diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-14 11:10:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 11:10:44 +0200 |
commit | c349083155ccbf94ca7aa8218437ece47bf8e5a4 (patch) | |
tree | 65e4d4045ee8469b9d1902acc0fc5b14bf1147bf /src/nvim/ui.c | |
parent | d258ac8ed21b3a202212792688b237d0741f6844 (diff) | |
parent | f5938d9bcfdfb92d26a13659b4afe1e77d4df637 (diff) | |
download | rneovim-c349083155ccbf94ca7aa8218437ece47bf8e5a4.tar.gz rneovim-c349083155ccbf94ca7aa8218437ece47bf8e5a4.tar.bz2 rneovim-c349083155ccbf94ca7aa8218437ece47bf8e5a4.zip |
Merge #6259 from justinmk/ui_refresh
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index a60c061949..b85a01814d 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -193,7 +193,12 @@ void ui_refresh(void) } row = col = 0; + + int save_p_lz = p_lz; + p_lz = false; // convince redrawing() to return true ... screen_resize(width, height); + p_lz = save_p_lz; + for (UIWidget i = 0; (int)i < UI_WIDGETS; i++) { ui_set_external(i, ext_widgets[i]); } |