From: Ander Conselvan de Oliveira Date: Thu, 28 Jun 2012 15:08:06 +0000 (+0300) Subject: shell: Don't move fullscreen surfaces X-Git-Tag: 0.95.0~97 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=00d17bb9034bb6ca291fb68a594694b423996990;p=profile%2Fivi%2Fweston.git shell: Don't move fullscreen surfaces --- diff --git a/src/shell.c b/src/shell.c index b477bbe..4d09c5b 100644 --- a/src/shell.c +++ b/src/shell.c @@ -1014,6 +1014,9 @@ surface_move(struct shell_surface *shsurf, struct weston_seat *ws) if (!shsurf) return -1; + if (shsurf->type == SHELL_SURFACE_FULLSCREEN) + return 0; + move = malloc(sizeof *move); if (!move) return -1;