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());