summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2011-05-02 14:11:15 -0400
committerKristian Høgsberg <krh@bitplanet.net>2011-05-02 14:11:15 -0400
commitd28b4d7be8c9e3134a9c0a8dbca8e12a8b9984a0 (patch)
tree6364ecf40fc34af1187031ebc19daf2b30e0f7f5
parent3d1cad80c2e2e8c2269238a8472318cbbbb78d7e (diff)
meego-tablet-shell: Match meego-ux-daemon key bindings
-rw-r--r--compositor/meego-tablet-shell.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/compositor/meego-tablet-shell.c b/compositor/meego-tablet-shell.c
index fa017f2d..9c3e444f 100644
--- a/compositor/meego-tablet-shell.c
+++ b/compositor/meego-tablet-shell.c
@@ -508,9 +508,11 @@ shell_init(struct wlsc_compositor *compositor)
shell->long_press_source =
wl_event_loop_add_timer(loop, long_press_handler, shell);
- wlsc_compositor_add_binding(compositor, KEY_SPACE, 0, MODIFIER_CTRL,
+ wlsc_compositor_add_binding(compositor, KEY_LEFTMETA, 0, 0,
home_key_binding, shell);
- wlsc_compositor_add_binding(compositor, KEY_ENTER, 0, MODIFIER_CTRL,
+ wlsc_compositor_add_binding(compositor, KEY_RIGHTMETA, 0, 0,
+ home_key_binding, shell);
+ wlsc_compositor_add_binding(compositor, KEY_MENU, 0, 0,
menu_key_binding, shell);
compositor->shell = &shell->shell;