From d882779aa9efbe4b113cc54d8663311ebb56788b Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Fri, 10 Feb 2012 16:40:22 +0200 Subject: [PATCH] shell: remove two redundant statements from map() I stared at this function for some time, and these were the only lines I could sanely remove. Signed-off-by: Pekka Paalanen --- src/shell.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/shell.c b/src/shell.c index 49edf97..f67a894 100644 --- a/src/shell.c +++ b/src/shell.c @@ -1306,7 +1306,6 @@ map(struct weston_shell *base, case SHELL_SURFACE_TOPLEVEL: surface->geometry.x = 10 + random() % 400; surface->geometry.y = 10 + random() % 400; - surface->geometry.dirty = 1; break; case SHELL_SURFACE_SCREENSAVER: case SHELL_SURFACE_FULLSCREEN: @@ -1337,7 +1336,6 @@ map(struct weston_shell *base, /* lock surface always visible, on top */ wl_list_insert(&compositor->surface_list, &surface->link); - weston_compositor_repick(compositor); weston_compositor_wake(compositor); do_configure = 1; break; -- 2.7.4