Skip to content

Commit

Permalink
Make the main window maintain size
Browse files Browse the repository at this point in the history
Sorry it took so long
  • Loading branch information
PrincessRTFM authored Mar 16, 2024
2 parents 3d2c88e + 57a982b commit 1499c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HuntBuddy/Windows/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public MainWindow() : base(
ImGuiWindowFlags.NoDocking,
true) {
this.Size = new Vector2(400 * ImGui.GetIO().FontGlobalScale, 500);
this.SizeCondition = ImGuiCond.Once;
this.SizeCondition = ImGuiCond.FirstUseEver;
}

public override void PreOpenCheck() {
Expand Down

0 comments on commit 1499c7b

Please sign in to comment.