mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 21:24:16 +01:00
fix: ignore dev windows for close hotkey
This commit is contained in:
parent
ff7b8fc1de
commit
8820f84d2b
7 changed files with 13 additions and 0 deletions
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -105,6 +105,8 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
this.Size = new Vector2(500, 500);
|
||||
this.SizeCondition = ImGuiCond.FirstUseEver;
|
||||
|
||||
this.RespectCloseHotkey = false;
|
||||
|
||||
this.Load();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,8 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
this.Size = Vector2.Zero;
|
||||
this.SizeCondition = ImGuiCond.Always;
|
||||
this.IsOpen = false;
|
||||
|
||||
this.RespectCloseHotkey = false;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
{
|
||||
this.Size = new Vector2(100, 200);
|
||||
this.SizeCondition = ImGuiCond.FirstUseEver;
|
||||
|
||||
this.RespectCloseHotkey = false;
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
public PluginStatWindow()
|
||||
: base("Plugin Statistics###DalamudPluginStatWindow")
|
||||
{
|
||||
this.RespectCloseHotkey = false;
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
};
|
||||
|
||||
this.Execution = new ScratchExecutionManager();
|
||||
|
||||
this.RespectCloseHotkey = false;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -56,6 +56,8 @@ namespace Dalamud.Interface.Internal.Windows.SelfTest
|
|||
{
|
||||
this.Size = new Vector2(800, 800);
|
||||
this.SizeCondition = ImGuiCond.FirstUseEver;
|
||||
|
||||
this.RespectCloseHotkey = false;
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue