mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix(PluginInstallerWindow): duplicate ImGui id with 3rd plugins install button
This commit is contained in:
parent
386251f232
commit
112833be8b
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue