~ruther/qmk_firmware

16be8346175046582b6607a66194cb154d067fb0 — tmk 14 years ago 06db395
changed special mode key for macway: Left Shift + Right Shift
1 files changed, 1 insertions(+), 2 deletions(-)

M macway/keymap.c
M macway/keymap.c => macway/keymap.c +1 -2
@@ 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);
}