0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

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)
This commit is contained in:
Christian Brabandt
2021-11-28 18:41:05 +00:00
committed by Bram Moolenaar
parent 59f4f9505a
commit 2e0f3ecb70
2 changed files with 6 additions and 0 deletions

View File

@@ -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;
}