Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
ca7e1f20
Commit
ca7e1f20
authored
14 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
Fix: window title not updated after file dropped.
parent
06b5d516
No related branches found
Branches containing commit
Tags
v7.0163
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
runtime/doc/todo.txt
+1
-0
1 addition, 0 deletions
runtime/doc/todo.txt
runtime/doc/version7.txt
+2
-0
2 additions, 0 deletions
runtime/doc/version7.txt
src/gui.c
+4
-3
4 additions, 3 deletions
src/gui.c
with
7 additions
and
3 deletions
runtime/doc/todo.txt
+
1
−
0
View file @
ca7e1f20
...
@@ -1093,6 +1093,7 @@ Patches to include:
...
@@ -1093,6 +1093,7 @@ Patches to include:
- Patch to support netbeans for Mac. (Kazuki Sakamoto, 2009 Jun 25)
- 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 clipboard for Mac terminal. (Jjgod Jiang, 2009 Aug 1)
- Patch to support :browse for more commands. (Lech Lorens, 2009 Jul 18)
- 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
- Patch to add diff functionality to 2html.vim. (Christian Brabandt, 2009 Dec
15)
15)
- Win32: patch for better font scaling. (George Reilly, 2009 Mar 26)
- Win32: patch for better font scaling. (George Reilly, 2009 Mar 26)
...
...
This diff is collapsed.
Click to expand it.
runtime/doc/version7.txt
+
2
−
0
View file @
ca7e1f20
...
@@ -7210,5 +7210,7 @@ using GTK floating point numbers stop working. Use gtk_disable_setlocale().
...
@@ -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
Use BASEMODLIBS instead of MODLIBS for Python configuration to pick up the
right compiler flags. (Michael Bienia)
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:
vim:tw=78:ts=8:ft=help:norl:
This diff is collapsed.
Click to expand it.
src/gui.c
+
4
−
3
View file @
ca7e1f20
...
@@ -2680,16 +2680,14 @@ gui_wait_for_chars(wtime)
...
@@ -2680,16 +2680,14 @@ gui_wait_for_chars(wtime)
{
{
int
retval
;
int
retval
;
#ifdef FEAT_MENU
/*
/*
* If we're going to wait a bit, update the menus and mouse shape for the
* If we're going to wait a bit, update the menus and mouse shape for the
* current State.
* current State.
*/
*/
if
(
wtime
!=
0
)
if
(
wtime
!=
0
)
{
#ifdef FEAT_MENU
gui_update_menus
(
0
);
gui_update_menus
(
0
);
#endif
#endif
}
gui_mch_update
();
gui_mch_update
();
if
(
input_available
())
/* Got char, return immediately */
if
(
input_available
())
/* Got char, return immediately */
...
@@ -5281,6 +5279,9 @@ gui_handle_drop(x, y, modifiers, fnames, count)
...
@@ -5281,6 +5279,9 @@ gui_handle_drop(x, y, modifiers, fnames, count)
# ifdef FEAT_MENU
# ifdef FEAT_MENU
gui_update_menus
(
0
);
gui_update_menus
(
0
);
# endif
# endif
#ifdef FEAT_TITLE
maketitle
();
#endif
setcursor
();
setcursor
();
out_flush
();
out_flush
();
gui_update_cursor
(
FALSE
,
FALSE
);
gui_update_cursor
(
FALSE
,
FALSE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment