mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Add some more flags to the popup window.
This commit is contained in:
parent
beb777e3cd
commit
4d9c5bdb8d
1 changed files with 11 additions and 3 deletions
|
|
@ -24,10 +24,17 @@ public sealed class ImportPopup : Window
|
|||
| ImGuiWindowFlags.NoDecoration
|
||||
| ImGuiWindowFlags.NoBackground
|
||||
| ImGuiWindowFlags.NoMove
|
||||
| ImGuiWindowFlags.NoInputs, true)
|
||||
| ImGuiWindowFlags.NoInputs
|
||||
| ImGuiWindowFlags.NoNavFocus
|
||||
| ImGuiWindowFlags.NoFocusOnAppearing
|
||||
| ImGuiWindowFlags.NoBringToFrontOnFocus
|
||||
| ImGuiWindowFlags.NoDocking
|
||||
| ImGuiWindowFlags.NoTitleBar, true)
|
||||
{
|
||||
_modImportManager = modImportManager;
|
||||
IsOpen = true;
|
||||
_modImportManager = modImportManager;
|
||||
IsOpen = true;
|
||||
RespectCloseHotkey = false;
|
||||
Collapsed = false;
|
||||
SizeConstraints = new WindowSizeConstraints
|
||||
{
|
||||
MinimumSize = Vector2.Zero,
|
||||
|
|
@ -40,6 +47,7 @@ public sealed class ImportPopup : Window
|
|||
WasDrawn = false;
|
||||
PopupWasDrawn = false;
|
||||
_modImportManager.TryUnpacking();
|
||||
IsOpen = true;
|
||||
}
|
||||
|
||||
public override void Draw()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue