diff --git a/Dalamud/Dalamud.cs b/Dalamud/Dalamud.cs index 336666704..67dbe85b6 100644 --- a/Dalamud/Dalamud.cs +++ b/Dalamud/Dalamud.cs @@ -151,8 +151,6 @@ namespace Dalamud { IsReady = true; }); - - this.conditionDebugWindow = new ConditionDebugWindow( this ); } public void Start() { @@ -218,7 +216,6 @@ namespace Dalamud { private DalamudCreditsWindow creditsWindow; private DalamudSettingsWindow settingsWindow; private PluginInstallerWindow pluginWindow; - private ConditionDebugWindow conditionDebugWindow; private DalamudPluginStatWindow pluginStatWindow; private void BuildDalamudUi() @@ -279,16 +276,6 @@ namespace Dalamud { ImGui.EndMenu(); } - if( ImGui.BeginMenu( "Game" ) ) - { - if( ImGui.MenuItem( "Condition Debug" ) ) - { - this.conditionDebugWindow.Enabled = !this.conditionDebugWindow.Enabled; - } - - ImGui.EndMenu(); - } - if (ImGui.BeginMenu("Plugins")) { if (ImGui.MenuItem("Open Plugin installer")) @@ -400,11 +387,6 @@ namespace Dalamud { if (this.isImguiDrawDemoWindow) ImGui.ShowDemoWindow(); - if( this.conditionDebugWindow.Enabled ) - { - this.conditionDebugWindow.Draw(); - } - if (this.isImguiDrawPluginStatWindow) { this.isImguiDrawPluginStatWindow = this.pluginStatWindow != null && this.pluginStatWindow.Draw(); if (!this.isImguiDrawPluginStatWindow) {