diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-16 21:35:52 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-16 21:35:52 +0000 |
commit | d3667a2e2971a879194084f4b61b8ff7ff9765a2 (patch) | |
tree | b4dcab4066674ba9bfa268bff3ee9b2be20aa320 /src/gui.c | |
parent | cf03447964a76bd37b14d208fc524f40a84f6e64 (diff) | |
download | vim-git-d3667a2e2971a879194084f4b61b8ff7ff9765a2.tar.gz |
updated for version 7.0226
Diffstat (limited to 'src/gui.c')
-rw-r--r-- | src/gui.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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); |