From b4808be46292b1bb07c1a0630a85e40ba9df872a Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Fri, 15 Jul 2022 19:24:49 +0200 Subject: [PATCH] chore: ignore HasEverStartedLoad check for devplugins --- .../Internal/Windows/PluginInstaller/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index 2bfbf8e08..f68c3a23b 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -1949,7 +1949,7 @@ namespace Dalamud.Interface.Internal.Windows.PluginInstaller ImGui.SetTooltip(Locs.PluginButtonToolTip_DeletePluginLoaded); } } - else if (plugin.HasEverStartedLoad) + else if (plugin.HasEverStartedLoad && !plugin.IsDev) { ImGui.PushFont(InterfaceManager.IconFont); ImGuiComponents.DisabledButton(FontAwesomeIcon.TrashAlt.ToIconString());