chore: ignore HasEverStartedLoad check for devplugins

This commit is contained in:
goat 2022-07-15 19:24:49 +02:00
parent 1c581d4be3
commit b4808be462
No known key found for this signature in database
GPG key ID: 7773BB5B43BA52E5

View file

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