diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-06-15 19:41:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-15 19:41:58 +0800 |
commit | 0c6ad03c3f89c2ff26dfd2f2e861cf3ed09f6c87 (patch) | |
tree | b456b69956d00f54fbdd16f30c0aff4258588c39 /src | |
parent | 504d7decbdef55d58e62217a0a54cbee2a0944cc (diff) | |
download | rneovim-0c6ad03c3f89c2ff26dfd2f2e861cf3ed09f6c87.tar.gz rneovim-0c6ad03c3f89c2ff26dfd2f2e861cf3ed09f6c87.tar.bz2 rneovim-0c6ad03c3f89c2ff26dfd2f2e861cf3ed09f6c87.zip |
fix(ui): do not call showmode() when setting window height (#18969)
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/window.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 95796b29a1..1487759d60 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -5509,7 +5509,6 @@ void win_setheight_win(int height, win_T *win) msg_row = row; msg_col = 0; redraw_all_later(NOT_VALID); - showmode(); } } |