diff options
author | Hubert Hirtz <hubert@hirtz.pm> | 2021-10-27 13:25:35 +0200 |
---|---|---|
committer | Hubert Hirtz <hubert@hirtz.pm> | 2021-10-27 13:25:35 +0200 |
commit | c1329b30ec531a5c82a629acf4b0c521dc4720d3 (patch) | |
tree | bc3ad4526cdb1185d757c66206d8d7d1437d8768 /ui/ui.go | |
parent | Scroll up/down highlight by highlight (diff) |
Sync screen during resize
For CtrlL to actually refresh the screen.
Diffstat (limited to 'ui/ui.go')
-rw-r--r-- | ui/ui.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -295,6 +295,7 @@ func (ui *UI) Resize() { } else { ui.bs.ResizeTimeline(innerWidth, h-2) } + ui.screen.Sync() } func (ui *UI) Size() (int, int) { |