소스 검색

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() {