diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-18 13:51:59 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-05-18 20:16:18 +0200 |
commit | 17758fe7ad0d5db54dc43e364d53f637a148e73f (patch) | |
tree | 2b4925268f561dd176baf17bbf9d1d810407cd95 /src/nvim/os | |
parent | c28192e6f9c16de3add78c5ecf8e732c241f945a (diff) | |
download | rneovim-17758fe7ad0d5db54dc43e364d53f637a148e73f.tar.gz rneovim-17758fe7ad0d5db54dc43e364d53f637a148e73f.tar.bz2 rneovim-17758fe7ad0d5db54dc43e364d53f637a148e73f.zip |
fix(ui): make winbar work with floats and multigrid
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/input.c b/src/nvim/os/input.c index e4a91d1416..7a50725461 100644 --- a/src/nvim/os/input.c +++ b/src/nvim/os/input.c @@ -183,7 +183,7 @@ void os_breakcheck(void) // We do not want screen_resize() to redraw here. // TODO(bfredl): we are already special casing redraw events, is this // hack still needed? - updating_screen++; + updating_screen = true; loop_poll_events(&main_loop, 0); |