# HG changeset patch # User Bram Moolenaar # Date 1638125103 -3600 # Node ID 39f841f187d575d9487cce996f7d6d091213a7f8 # Parent 3b8095ac79d87fdde0737652d45029b6c92605c8 patch 8.2.3688: the window title is not updated when dragging the scrollbar Commit: https://github.com/vim/vim/commit/2e0f3ecb7046e6d7915327270f836c48ad033a67 Author: Christian Brabandt Date: Sun Nov 28 18:41:05 2021 +0000 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 https://github.com/vim/vim/issues/9238, closes https://github.com/vim/vim/issues/5383) diff --git a/src/gui.c b/src/gui.c --- 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 --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3688, +/**/ 3687, /**/ 3686,