Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/taskmon/Gui/MainScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ protected override void OnResize()

footerControl.X = 0;
footerControl.Y = Height - FooterHeight;
footerControl.Width = Width;
// Setting Width -1 prevents the auto-scroll when bottom right corner is written to on Windows,
// which can sometimes jump the screen around.
footerControl.Width = Width - 1;
footerControl.Height = FooterHeight;

base.OnResize();
Expand Down
Loading