From ca7e1f2066e3518ee6caeef32e499ab954ec05a3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar <Bram@vim.org> Date: Sat, 22 May 2010 15:50:12 +0200 Subject: [PATCH] Fix: window title not updated after file dropped. --- runtime/doc/todo.txt | 1 + runtime/doc/version7.txt | 2 ++ src/gui.c | 7 ++++--- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index cb88657e7e..ff197981df 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1093,6 +1093,7 @@ Patches to include: - Patch to support netbeans for Mac. (Kazuki Sakamoto, 2009 Jun 25) - Patch to support clipboard for Mac terminal. (Jjgod Jiang, 2009 Aug 1) - Patch to support :browse for more commands. (Lech Lorens, 2009 Jul 18) +- Patch to improve javascript indenting. (Hari Kumar G, 2010 May 22) - Patch to add diff functionality to 2html.vim. (Christian Brabandt, 2009 Dec 15) - Win32: patch for better font scaling. (George Reilly, 2009 Mar 26) diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt index 609c5e81eb..a82bf9e5e3 100644 --- a/runtime/doc/version7.txt +++ b/runtime/doc/version7.txt @@ -7210,5 +7210,7 @@ using GTK floating point numbers stop working. Use gtk_disable_setlocale(). Use BASEMODLIBS instead of MODLIBS for Python configuration to pick up the right compiler flags. (Michael Bienia) +Window title is not updated after dropping a file on Vim. (Hari G) + vim:tw=78:ts=8:ft=help:norl: diff --git a/src/gui.c b/src/gui.c index 5b1a2ae08f..ccf6e39a59 100644 --- a/src/gui.c +++ b/src/gui.c @@ -2680,16 +2680,14 @@ gui_wait_for_chars(wtime) { 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 @@ gui_handle_drop(x, y, modifiers, fnames, count) # ifdef FEAT_MENU gui_update_menus(0); # endif +#ifdef FEAT_TITLE + maketitle(); +#endif setcursor(); out_flush(); gui_update_cursor(FALSE, FALSE); -- GitLab