mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 16:27:44 +01:00
fix(PluginInstaller): check for IsLoaded to show checkmark
This commit is contained in:
parent
7385108f42
commit
f7432570fe
1 changed files with 1 additions and 1 deletions
|
|
@ -1080,7 +1080,7 @@ namespace Dalamud.Interface.Internal.Windows
|
||||||
ImGui.Image(this.imageCache.ThirdIcon.ImGuiHandle, iconSize);
|
ImGui.Image(this.imageCache.ThirdIcon.ImGuiHandle, iconSize);
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
}
|
}
|
||||||
else if (plugin != null)
|
else if (plugin is { IsLoaded: true })
|
||||||
{
|
{
|
||||||
ImGui.SetCursorPos(cursorBeforeImage);
|
ImGui.SetCursorPos(cursorBeforeImage);
|
||||||
ImGui.Image(this.imageCache.InstalledIcon.ImGuiHandle, iconSize);
|
ImGui.Image(this.imageCache.InstalledIcon.ImGuiHandle, iconSize);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue