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