From 0837fa9626d452baf451ebbeed3d4b851914ff0f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Mon, 20 Jan 2014 10:35:26 -0800 Subject: [PATCH] shell: Add mod+shift left-click as a resize binding This lets us use compositor-initiated resize on laptops with touchpads and no middle buttons. --- desktop-shell/shell.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/desktop-shell/shell.c b/desktop-shell/shell.c index 09614b6..2b9241c 100644 --- a/desktop-shell/shell.c +++ b/desktop-shell/shell.c @@ -5548,6 +5548,9 @@ shell_add_bindings(struct weston_compositor *ec, struct desktop_shell *shell) weston_compositor_add_touch_binding(ec, mod, touch_move_binding, shell); weston_compositor_add_button_binding(ec, BTN_MIDDLE, mod, resize_binding, shell); + weston_compositor_add_button_binding(ec, BTN_LEFT, + mod | MODIFIER_SHIFT, + resize_binding, shell); if (ec->capabilities & WESTON_CAP_ROTATION_ANY) weston_compositor_add_button_binding(ec, BTN_RIGHT, mod, -- 2.7.4