fix: ignore dev windows for close hotkey

This commit is contained in:
goat 2021-09-02 00:57:10 +02:00
parent ff7b8fc1de
commit 8820f84d2b
No known key found for this signature in database
GPG key ID: F18F057873895461
7 changed files with 13 additions and 0 deletions

View file

@ -40,6 +40,8 @@ namespace Dalamud.Interface.Internal.Windows
this.Size = new Vector2(600, 500);
this.SizeCondition = ImGuiCond.FirstUseEver;
this.RespectCloseHotkey = false;
this.componentDemos = new()
{
("Test", ImGuiComponents.Test),

View file

@ -105,6 +105,8 @@ namespace Dalamud.Interface.Internal.Windows
this.Size = new Vector2(500, 500);
this.SizeCondition = ImGuiCond.FirstUseEver;
this.RespectCloseHotkey = false;
this.Load();
}

View file

@ -25,6 +25,8 @@ namespace Dalamud.Interface.Internal.Windows
this.Size = Vector2.Zero;
this.SizeCondition = ImGuiCond.Always;
this.IsOpen = false;
this.RespectCloseHotkey = false;
}
/// <summary>

View file

@ -19,6 +19,8 @@ namespace Dalamud.Interface.Internal.Windows
{
this.Size = new Vector2(100, 200);
this.SizeCondition = ImGuiCond.FirstUseEver;
this.RespectCloseHotkey = false;
}
/// <inheritdoc/>

View file

@ -25,6 +25,7 @@ namespace Dalamud.Interface.Internal.Windows
public PluginStatWindow()
: base("Plugin Statistics###DalamudPluginStatWindow")
{
this.RespectCloseHotkey = false;
}
/// <inheritdoc/>

View file

@ -35,6 +35,8 @@ namespace Dalamud.Interface.Internal.Windows
};
this.Execution = new ScratchExecutionManager();
this.RespectCloseHotkey = false;
}
/// <summary>

View file

@ -56,6 +56,8 @@ namespace Dalamud.Interface.Internal.Windows.SelfTest
{
this.Size = new Vector2(800, 800);
this.SizeCondition = ImGuiCond.FirstUseEver;
this.RespectCloseHotkey = false;
}
/// <inheritdoc/>