summaryrefslogtreecommitdiff
path: root/src/gui.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-16 21:35:52 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-16 21:35:52 +0000
commitd3667a2e2971a879194084f4b61b8ff7ff9765a2 (patch)
treeb4dcab4066674ba9bfa268bff3ee9b2be20aa320 /src/gui.c
parentcf03447964a76bd37b14d208fc524f40a84f6e64 (diff)
downloadvim-git-d3667a2e2971a879194084f4b61b8ff7ff9765a2.tar.gz
updated for version 7.0226
Diffstat (limited to 'src/gui.c')
-rw-r--r--src/gui.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui.c b/src/gui.c
index 0a2286bf7..07d7788a3 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -4394,6 +4394,10 @@ gui_mouse_moved(x, y)
win_T *wp;
char_u st[6];
+ /* Ignore this while still starting up. */
+ if (!gui.in_use || gui.starting)
+ return;
+
#ifdef FEAT_MOUSESHAPE
/* Get window pointer, and update mouse shape as well. */
wp = xy2win(x, y);