mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 14:27:45 +01:00
feat: list installed plugins separately, also list hidden and dev plugins in installer
This commit is contained in:
parent
88a2f5aadf
commit
67b7dcaf74
4 changed files with 221 additions and 162 deletions
|
|
@ -354,6 +354,7 @@ namespace Dalamud {
|
|||
this.pluginWindow = new PluginInstallerWindow(this, this.StartInfo.GameVersion);
|
||||
this.isImguiDrawPluginWindow = true;
|
||||
}
|
||||
ImGui.Separator();
|
||||
if (ImGui.MenuItem("Open Plugin Stats")) {
|
||||
if (!this.isImguiDrawPluginStatWindow) {
|
||||
this.pluginStatWindow = new DalamudPluginStatWindow(this.PluginManager);
|
||||
|
|
@ -436,6 +437,9 @@ namespace Dalamud {
|
|||
if (this.isImguiDrawPluginWindow)
|
||||
{
|
||||
this.isImguiDrawPluginWindow = this.pluginWindow != null && this.pluginWindow.Draw();
|
||||
|
||||
if (!this.isImguiDrawPluginWindow)
|
||||
this.pluginWindow = null;
|
||||
}
|
||||
|
||||
if (this.isImguiDrawCreditsWindow)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue