浏览代码

finally make the main window maintain size

Lilith Song 2 年之前
父节点
当前提交
57a982be9e
共有 1 个文件被更改,包括 1 次插入1 次删除
  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() {