From 0d20ff25e431ee53b52becd0057b513aea46e4a2 Mon Sep 17 00:00:00 2001 From: Haselnussbomber Date: Sat, 5 Aug 2023 13:11:24 +0200 Subject: [PATCH] fix: missing ## for id in DisabledButton --- Dalamud/Interface/Components/ImGuiComponents.DisabledButton.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Components/ImGuiComponents.DisabledButton.cs b/Dalamud/Interface/Components/ImGuiComponents.DisabledButton.cs index 181bbbfd7..907ad0aeb 100644 --- a/Dalamud/Interface/Components/ImGuiComponents.DisabledButton.cs +++ b/Dalamud/Interface/Components/ImGuiComponents.DisabledButton.cs @@ -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);