Browse Source

Added missing update on scroll wheel up

tznind 4 years ago
parent
commit
0045bed692
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Terminal.Gui/Views/TableView.cs

+ 1 - 0
Terminal.Gui/Views/TableView.cs

@@ -580,6 +580,7 @@ namespace Terminal.Gui.Views {
 				return true;
 			} else if (me.Flags == MouseFlags.WheeledUp) {
 				RowOffset--;
+				Update ();
 				return true;
 			}