Skip to content

Commit

Permalink
fix(Studio): Hidden game-info-panel not freeing up space
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Sep 22, 2024
1 parent f27c2af commit ef268c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Studio/CelesteStudio/Studio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public void RecalculateLayout() {
GameInfoPanel.Width = ClientSize.Width;
EditorScrollable.Size = new Size(
Math.Max(0, ClientSize.Width),
Math.Max(0, ClientSize.Height - GameInfoPanel.ClientSize.Height));
Math.Max(0, ClientSize.Height - GameInfoPanel.Height));
}

private void ApplySettings() {
Expand Down

0 comments on commit ef268c4

Please sign in to comment.