diff src/gui.c @ 771:c0f1b710ce07

updated for version 7.0226
author vimboss
date Thu, 16 Mar 2006 21:35:52 +0000
parents ef3b59af4207
children b5aed52a4881
line wrap: on
line diff
--- 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);