Merge pull request #3332 from Tyriar/scroll_refresh

Make sure all rows are refreshed on input
This commit is contained in:
Daniel Imms
2021-05-11 07:02:41 -07:00
committed by GitHub
+2
View File
@@ -151,6 +151,8 @@ export class Viewport extends Disposable implements IViewport {
// Ignore the event if it was flagged to ignore (when the source of the event is from Viewport)
if (this._ignoreNextScrollEvent) {
this._ignoreNextScrollEvent = false;
// Still trigger the scroll so lines get refreshed
this._scrollLines(0);
return;
}