Parcourir la source

Make the main window maintain size

Sorry it took so long
Lilith il y a 2 ans
Parent
commit
1499c7b3dc
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      HuntBuddy/Windows/MainWindow.cs

+ 1 - 1
HuntBuddy/Windows/MainWindow.cs

@@ -21,7 +21,7 @@ public class MainWindow: Window {
 		ImGuiWindowFlags.NoDocking,
 		true) {
 		this.Size = new Vector2(400 * ImGui.GetIO().FontGlobalScale, 500);
-		this.SizeCondition = ImGuiCond.Once;
+		this.SizeCondition = ImGuiCond.FirstUseEver;
 	}
 
 	public override void PreOpenCheck() {