From: Christian Brabandt Date: Sun, 28 Nov 2021 18:41:05 +0000 (+0000) Subject: patch 8.2.3688: the window title is not updated when dragging the scrollbar X-Git-Tag: v8.2.3688 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e0f3ecb7046e6d7915327270f836c48ad033a67;p=vim 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 13f1fe4fa..17f4e9506 100644 --- a/src/gui.c +++ b/src/gui.c @@ -4412,6 +4412,10 @@ gui_update_scrollbars( val, size, max); } } + + // update the title, it may show the scroll position + maketitle(); + prev_curwin = curwin; --hold_gui_events; } diff --git a/src/version.c b/src/version.c index 8972dbd36..f43b33c8f 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3688, /**/ 3687, /**/