소스 검색

Allow main window to be resized

Dragon 4 년 전
부모
커밋
a03fffd26d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Interface.cs

+ 1 - 1
Interface.cs

@@ -29,7 +29,7 @@ namespace HuntBuddy
 
 			var fontGlobalScale = ImGui.GetIO().FontGlobalScale;
 
-			ImGui.SetNextWindowSize(new Vector2(400 * ImGui.GetIO().FontGlobalScale, 500), ImGuiCond.Always);
+			ImGui.SetNextWindowSize(new Vector2(400 * ImGui.GetIO().FontGlobalScale, 500), ImGuiCond.Once);
 
 			if (!ImGui.Begin($"{_plugin.Name}", ref draw))
 			{