From: Kristian Høgsberg Date: Mon, 7 Apr 2014 18:52:17 +0000 (-0700) Subject: desktop-shell: Activate surface on right click too X-Git-Tag: upstream/0.1.8~297 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0ce581b923a4b6fd0346b09092bcaa17ba5a840;p=profile%2Fivi%2Fweston-ivi-shell.git desktop-shell: Activate surface on right click too This raises the surface to the top on right click as well, which fixes pop stacking. https://bugs.freedesktop.org/show_bug.cgi?id=74831 --- diff --git a/desktop-shell/shell.c b/desktop-shell/shell.c index fe03420..466ea93 100644 --- a/desktop-shell/shell.c +++ b/desktop-shell/shell.c @@ -5852,6 +5852,9 @@ shell_add_bindings(struct weston_compositor *ec, struct desktop_shell *shell) weston_compositor_add_button_binding(ec, BTN_LEFT, 0, click_to_activate_binding, shell); + weston_compositor_add_button_binding(ec, BTN_RIGHT, 0, + click_to_activate_binding, + shell); weston_compositor_add_touch_binding(ec, 0, touch_to_activate_binding, shell);