Re: [PATCH 1/2] shell: Add implementation of fullscreen.

2012-03-02 Thread Ander Conselvan de Oliveira
Em 01-03-2012 06:57, zhiwen...@linux.intel.com escreveu: From: Alex Wu @@ -1290,14 +1426,23 @@ activate(struct weston_shell *base, struct weston_surface *es, static void click_to_activate_binding(struct wl_input_device *device, - uint32_t time, uint32_t key, +

Re: [PATCH 1/2] shell: Add implementation of fullscreen.

2012-03-01 Thread Scott Moreau
> I will fix it in next version. > > > This version has already been pushed, so you probably just want to submit a patch to fix the issue on top of master. ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mai

RE: [PATCH 1/2] shell: Add implementation of fullscreen.

2012-03-01 Thread wuzhiwen
; juan.j.z...@linux.intel.com; ppaala...@gmail.com Subject: Re: [PATCH 1/2] shell: Add implementation of fullscreen. Hi. This patch introduces a bug where the window jumps all over the place when resizing it. I've tracked down the problem to the following code though I'm not sure I under

Re: [PATCH 1/2] shell: Add implementation of fullscreen.

2012-03-01 Thread Scott Moreau
Specifically, this questionable call + } else if (!shsurf->saved_position_valid) { >> + weston_surface_set_position(surface, 10 + >> random() % 400, >> + 10 + random() >> % 400); >> +

Re: [PATCH 1/2] shell: Add implementation of fullscreen.

2012-03-01 Thread Scott Moreau
Hi. This patch introduces a bug where the window jumps all over the place when resizing it. I've tracked down the problem to the following code though I'm not sure I understand what it's meant to do yet exactly, so I figured I'd post a comment here. + case SHELL_SURFACE_TOPLEVEL: > +

[PATCH 1/2] shell: Add implementation of fullscreen.

2012-02-29 Thread zhiwen . wu
From: Alex Wu Undo fullscreen in shell_unset_fullscreen(), do all the stacking order in shell_stack_fullscreen(), and configure black surface, method in shell_configure_fullscreen(). Signed-off-by: Alex Wu Signed-off-by: Juan Zhao --- src/shell.c | 218 +++