From 112833be8b2245b608dffbf88c2ffeef50abad97 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Thu, 15 Jul 2021 03:53:17 +0200 Subject: [PATCH] fix(PluginInstallerWindow): duplicate ImGui id with 3rd plugins install button --- Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index ee497f4c8..ecc2e8dee 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -523,7 +523,8 @@ namespace Dalamud.Interface.Internal.Windows } else { - if (ImGui.Button(Locs.PluginButton_InstallVersion(versionString))) + var buttonText = Locs.PluginButton_InstallVersion(versionString); + if (ImGui.Button($"{buttonText}##{buttonText}{index}")) { this.installStatus = OperationStatus.InProgress;