diff options
author | tmk <nobody@nowhere> | 2011-01-17 00:35:24 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-01-17 00:35:24 +0900 |
commit | 16be8346175046582b6607a66194cb154d067fb0 (patch) | |
tree | f496fb8fa5712cae521e834f71a1b9c67b73d08b | |
parent | 06db39583fe87a8d13c0c345887b71a577198049 (diff) |
changed special mode key for macway: Left Shift + Right Shift
-rw-r--r-- | macway/keymap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/macway/keymap.c b/macway/keymap.c index b6b6d3c3f2..f26267fd04 100644 --- a/macway/keymap.c +++ b/macway/keymap.c @@ -181,6 +181,5 @@ uint8_t keymap_fn_keycode(uint8_t fn_bits) // define a condition to enter special function mode bool keymap_is_special_mode(uint8_t fn_bits) { - //return (usb_keyboard_mods == (BIT_LCTRL | BIT_LSHIFT | BIT_LALT | BIT_LGUI)); - return (usb_keyboard_mods == (BIT_RSHIFT)); + return usb_keyboard_mods == (BIT_LSHIFT | BIT_RSHIFT); } |