Skip to content

Commit

Permalink
Merge pull request #1337 from Haselnussbomber/fix-disabledbutton
Browse files Browse the repository at this point in the history
fix: missing ## for id in DisabledButton
  • Loading branch information
goaaats authored Aug 5, 2023
2 parents 36bfad7 + 0d20ff2 commit 29668a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static bool DisabledButton(FontAwesomeIcon icon, int? id = null, Vector4?

var text = icon.ToIconString();
if (id.HasValue)
text = $"{text}{id}";
text = $"{text}##{id}";

var button = DisabledButton(text, defaultColor, activeColor, hoveredColor, alphaMult);

Expand Down

0 comments on commit 29668a9

Please sign in to comment.