fix: missing ## for id in DisabledButton

This commit is contained in:
Haselnussbomber 2023-08-05 13:11:24 +02:00
parent 36bfad7582
commit 0d20ff25e4
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1

View file

@ -25,7 +25,7 @@ public static partial class ImGuiComponents
var text = icon.ToIconString();
if (id.HasValue)
text = $"{text}{id}";
text = $"{text}##{id}";
var button = DisabledButton(text, defaultColor, activeColor, hoveredColor, alphaMult);