diff options
author | Jakub Łuczyński <doubleloop@users.noreply.github.com> | 2020-02-24 02:59:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-23 17:59:37 -0800 |
commit | 96059d72e539c0a23c1f7a24290f35247ff01749 (patch) | |
tree | fb63565a45c20c9e846db167e89a6ae7e3c2a7e5 /src | |
parent | c036e24f39481f2b7872659c076b53435192003d (diff) | |
download | rneovim-96059d72e539c0a23c1f7a24290f35247ff01749.tar.gz rneovim-96059d72e539c0a23c1f7a24290f35247ff01749.tar.bz2 rneovim-96059d72e539c0a23c1f7a24290f35247ff01749.zip |
TUI: reset background color before scroll #11909
fixes #11893
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/tui/tui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index e9276db484..22f4501be2 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -1099,6 +1099,7 @@ static void tui_grid_scroll(UI *ui, Integer g, Integer startrow, Integer endrow, set_scroll_region(ui, top, bot, left, right); } cursor_goto(ui, top, left); + update_attrs(ui, 0); if (rows > 0) { if (rows == 1) { |