commit | d3667a2e2971a879194084f4b61b8ff7ff9765a2 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Mar 16 21:35:52 2006 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Mar 16 21:35:52 2006 +0000 |
tree | b4dcab4066674ba9bfa268bff3ee9b2be20aa320 | |
parent | cf03447964a76bd37b14d208fc524f40a84f6e64 [diff] [blame] |
updated for version 7.0226
diff --git a/src/gui.c b/src/gui.c index 0a2286b..07d7788 100644 --- a/src/gui.c +++ b/src/gui.c
@@ -4394,6 +4394,10 @@ 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);