Fix: window title not updated after file dropped.
diff --git a/src/gui.c b/src/gui.c
index 5b1a2ae..ccf6e39 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -2680,16 +2680,14 @@
{
int retval;
+#ifdef FEAT_MENU
/*
* If we're going to wait a bit, update the menus and mouse shape for the
* current State.
*/
if (wtime != 0)
- {
-#ifdef FEAT_MENU
gui_update_menus(0);
#endif
- }
gui_mch_update();
if (input_available()) /* Got char, return immediately */
@@ -5281,6 +5279,9 @@
# ifdef FEAT_MENU
gui_update_menus(0);
# endif
+#ifdef FEAT_TITLE
+ maketitle();
+#endif
setcursor();
out_flush();
gui_update_cursor(FALSE, FALSE);