diff --git a/src/taskmon/Gui/MainScreen.cs b/src/taskmon/Gui/MainScreen.cs index 81b38ef..83263b5 100644 --- a/src/taskmon/Gui/MainScreen.cs +++ b/src/taskmon/Gui/MainScreen.cs @@ -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();