commit | 2e0f3ecb7046e6d7915327270f836c48ad033a67 | [log] [tgz] |
---|---|---|
author | Christian Brabandt <cb@256bit.org> | Sun Nov 28 18:41:05 2021 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Nov 28 18:41:05 2021 +0000 |
tree | 1f86cc8fed54594eed7950e1c7b2aa6350a52a11 | |
parent | 59f4f9505ae7ca2499904b94100db103e5ada5a6 [diff] [blame] |
patch 8.2.3688: the window title is not updated when dragging the scrollbar Problem: The window title is not updated when dragging the scrollbar. Solution: Call maketitle(). (Christian Brabandt, closes #9238, closes #5383)
diff --git a/src/gui.c b/src/gui.c index 13f1fe4..17f4e95 100644 --- a/src/gui.c +++ b/src/gui.c
@@ -4412,6 +4412,10 @@ val, size, max); } } + + // update the title, it may show the scroll position + maketitle(); + prev_curwin = curwin; --hold_gui_events; }