diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-06-14 20:32:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-14 20:32:16 +0200 |
commit | 7918845215855814cf16b483fb0bec9cdad313d2 (patch) | |
tree | 7c4b17c92f72df637d096e43ccbd00891a896e87 /src/nvim/window.c | |
parent | 6650588c4a89616249e964631dad17a66e1c6592 (diff) | |
parent | ad73a70e5a1c7da58d7afbb70310c14c62b2519d (diff) | |
download | rneovim-7918845215855814cf16b483fb0bec9cdad313d2.tar.gz rneovim-7918845215855814cf16b483fb0bec9cdad313d2.tar.bz2 rneovim-7918845215855814cf16b483fb0bec9cdad313d2.zip |
Merge pull request #6700 from bfredl/winhl
window specific ui highlighting: part 2
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index b71b48a6b7..43af2e5e4f 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -3723,8 +3723,8 @@ static void win_enter_ext(win_T *wp, bool undo_sync, int curwin_invalid, redraw_later(VALID); /* causes status line redraw */ if (hl_attr(HLF_INACTIVE) - || (prevwin && prevwin->w_hl_id_inactive) - || curwin->w_hl_id_inactive) { + || (prevwin && prevwin->w_hl_ids[HLF_INACTIVE]) + || curwin->w_hl_ids[HLF_INACTIVE]) { redraw_all_later(NOT_VALID); } |