Explorar el Código

Allow main window to be resized

Dragon hace 4 años
padre
commit
a03fffd26d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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))
 			{