merge part 2

This commit is contained in:
goat 2020-06-05 14:36:51 +02:00
parent eb66ce881c
commit 2f180d7c7d

View file

@ -151,8 +151,6 @@ namespace Dalamud {
IsReady = true; IsReady = true;
}); });
this.conditionDebugWindow = new ConditionDebugWindow( this );
} }
public void Start() { public void Start() {
@ -218,7 +216,6 @@ namespace Dalamud {
private DalamudCreditsWindow creditsWindow; private DalamudCreditsWindow creditsWindow;
private DalamudSettingsWindow settingsWindow; private DalamudSettingsWindow settingsWindow;
private PluginInstallerWindow pluginWindow; private PluginInstallerWindow pluginWindow;
private ConditionDebugWindow conditionDebugWindow;
private DalamudPluginStatWindow pluginStatWindow; private DalamudPluginStatWindow pluginStatWindow;
private void BuildDalamudUi() private void BuildDalamudUi()
@ -279,16 +276,6 @@ namespace Dalamud {
ImGui.EndMenu(); 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.BeginMenu("Plugins"))
{ {
if (ImGui.MenuItem("Open Plugin installer")) if (ImGui.MenuItem("Open Plugin installer"))
@ -400,11 +387,6 @@ namespace Dalamud {
if (this.isImguiDrawDemoWindow) if (this.isImguiDrawDemoWindow)
ImGui.ShowDemoWindow(); ImGui.ShowDemoWindow();
if( this.conditionDebugWindow.Enabled )
{
this.conditionDebugWindow.Draw();
}
if (this.isImguiDrawPluginStatWindow) { if (this.isImguiDrawPluginStatWindow) {
this.isImguiDrawPluginStatWindow = this.pluginStatWindow != null && this.pluginStatWindow.Draw(); this.isImguiDrawPluginStatWindow = this.pluginStatWindow != null && this.pluginStatWindow.Draw();
if (!this.isImguiDrawPluginStatWindow) { if (!this.isImguiDrawPluginStatWindow) {