mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 13:53:40 +01:00
merge part 2
This commit is contained in:
parent
eb66ce881c
commit
2f180d7c7d
1 changed files with 0 additions and 18 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue