From d3667a2e2971a879194084f4b61b8ff7ff9765a2 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 16 Mar 2006 21:35:52 +0000 Subject: updated for version 7.0226 --- src/gui.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gui.c') 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); -- cgit v1.2.1