From: Philipp Brüschweiler Date: Fri, 24 Aug 2012 13:43:55 +0000 (+0200) Subject: desktop-shell: respect CURSOR_NONE as grab cursor X-Git-Tag: submit/trunk/20120913.174637~90 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16d59d7780a57087d61de071dfdf301291667acb;p=profile%2Fivi%2Fweston.git 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 @@ desktop_shell_grab_cursor(void *data, 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;