Skip to content

Commit

Permalink
patch 8.2.3688: the window title is not updated when dragging the scr…
Browse files Browse the repository at this point in the history
…ollbar

Problem:    The window title is not updated when dragging the scrollbar.
Solution:   Call maketitle(). (Christian Brabandt, closes #9238, closes #5383)
  • Loading branch information
chrisbra authored and brammool committed Nov 28, 2021
1 parent 59f4f95 commit 2e0f3ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gui.c
Expand Up @@ -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;
}
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -757,6 +757,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3688,
/**/
3687,
/**/
Expand Down

0 comments on commit 2e0f3ec

Please sign in to comment.