Skip to content

Commit

Permalink
Merge branch 'develop' of tig:gui-cs/Terminal.Gui into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
tig committed Aug 3, 2022
2 parents 1b8daa3 + 54d2ecf commit 2fe30c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Terminal.Gui/ConsoleDrivers/WindowsDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ private void ChangeWin (Size e)
w += 3;
}
var newSize = WinConsole.SetConsoleWindow (
(short)Math.Max (w, 16), (short)e.Height);
(short)Math.Max (w, 16), (short)Math.Max (e.Height, 1));
left = 0;
top = 0;
cols = newSize.Width;
Expand Down

0 comments on commit 2fe30c7

Please sign in to comment.