From f7432570fef41fafad774ba08e432191a0b2472c Mon Sep 17 00:00:00 2001 From: goaaats <16760685+goaaats@users.noreply.github.com> Date: Sat, 15 Jan 2022 03:01:08 +0100 Subject: [PATCH] fix(PluginInstaller): check for IsLoaded to show checkmark --- Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index a99603227..b5e9417ef 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -1080,7 +1080,7 @@ namespace Dalamud.Interface.Internal.Windows ImGui.Image(this.imageCache.ThirdIcon.ImGuiHandle, iconSize); ImGui.SameLine(); } - else if (plugin != null) + else if (plugin is { IsLoaded: true }) { ImGui.SetCursorPos(cursorBeforeImage); ImGui.Image(this.imageCache.InstalledIcon.ImGuiHandle, iconSize);