1
0
Fork 0

Add config window size constraints

master
Liza 2024-05-11 14:02:08 +02:00
parent af964b0723
commit 1a72a2dbe0
Signed by: liza
GPG Key ID: 7199F8D727D55F67
1 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,11 @@ internal sealed class ConfigWindow : LWindow
Position = new Vector2(100, 100);
PositionCondition = ImGuiCond.FirstUseEver;
Flags = ImGuiWindowFlags.AlwaysAutoResize;
SizeConstraints = new WindowSizeConstraints
{
MinimumSize = new Vector2(270, 50),
};
}
public override void Draw()