mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: namespace ImGui in PluginInstaller
This commit is contained in:
parent
a7da9c43db
commit
72152323b0
1 changed files with 4 additions and 0 deletions
|
|
@ -182,6 +182,8 @@ namespace Dalamud.Plugin
|
|||
if (pluginDefinition.IsHide)
|
||||
continue;
|
||||
|
||||
ImGui.PushID(pluginDefinition.InternalName + pluginDefinition.AssemblyVersion);
|
||||
|
||||
if (ImGui.CollapsingHeader(pluginDefinition.Name)) {
|
||||
ImGui.Indent();
|
||||
|
||||
|
|
@ -235,6 +237,8 @@ namespace Dalamud.Plugin
|
|||
|
||||
ImGui.Unindent();
|
||||
}
|
||||
|
||||
ImGui.PopID();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue