commit | 16d59d7780a57087d61de071dfdf301291667acb | [log] [tgz] |
---|---|---|
author | Philipp Brüschweiler <blei42@gmail.com> | Fri Aug 24 15:43:55 2012 +0200 |
committer | Kristian Høgsberg <krh@bitplanet.net> | Wed Aug 29 15:12:57 2012 -0400 |
tree | f779e972d0c3fe0ba640a31b2b85ac57bc6cd075 | |
parent | bd3f219344eec2706f0b5f2636201f90951fdc33 [diff] |
desktop-shell: respect CURSOR_NONE as grab cursor
diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c index 97b2066..dc87e75 100644 --- a/clients/desktop-shell.c +++ b/clients/desktop-shell.c
@@ -806,6 +806,9 @@ struct desktop *desktop = data; switch (cursor) { + case DESKTOP_SHELL_CURSOR_NONE: + desktop->grab_cursor = CURSOR_BLANK; + break; case DESKTOP_SHELL_CURSOR_BUSY: desktop->grab_cursor = CURSOR_WATCH; break;