From: Jason Ekstrand Date: Wed, 1 Jan 2014 21:58:57 +0000 (-0600) Subject: Fix the size of surfaces created in create_black_surface X-Git-Tag: 1.3.92~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6228ee235fe423ecdcdd0ddd9b6d93f9b573a109;p=platform%2Fupstream%2Fweston.git Fix the size of surfaces created in create_black_surface Signed-off-by: Jason Ekstrand --- diff --git a/desktop-shell/shell.c b/desktop-shell/shell.c index 2019a4e..c49edf9 100644 --- a/desktop-shell/shell.c +++ b/desktop-shell/shell.c @@ -2445,7 +2445,7 @@ create_black_surface(struct weston_compositor *ec, pixman_region32_fini(&surface->input); pixman_region32_init_rect(&surface->input, 0, 0, w, h); - weston_surface_set_size(surface, w, y); + weston_surface_set_size(surface, w, h); weston_view_set_position(view, x, y); return view;