https://bugzilla.gnome.org/show_bug.cgi?id=770112

--- Comment #10 from Olivier Fourdan <[email protected]> ---
Sorry, this particular shortcut is handled in shell/cc-window.c in the case of
g-c-c and the action is not triggered because of the state, it contains
additional bits.

e.g.:

g-c-c tests  "state == GDK_MOD1_MASK" in window_key_press_event() but in gdb we
can see the action is not triggered because state == 0x10000008 whereas
GDK_MOD1_MASK is 0x8, so they don't match.

Changing the test to "state & GDK_MOD1_MASK" in window_key_press_event()
triggers the action though.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
wayland-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs

Reply via email to