diff options
author | tmk <nobody@nowhere> | 2012-05-24 14:21:52 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-05-24 14:21:52 +0900 |
commit | 660ea5a2cd6aaf26eb584ae6cfbf777bdf62f0b2 (patch) | |
tree | 8544b39b00bb7b7706b2548a86ac27ee39b14193 /m0110_usb/config.h | |
parent | f4bff66e9124fae26129e294c525ec6ce3cea4ef (diff) | |
parent | 805ce3c1309421df6166b085b70f53c494f9946b (diff) | |
download | qmk_firmware-660ea5a2cd6aaf26eb584ae6cfbf777bdf62f0b2.tar.gz qmk_firmware-660ea5a2cd6aaf26eb584ae6cfbf777bdf62f0b2.zip |
Merge branch 'm0110a'
Diffstat (limited to 'm0110_usb/config.h')
-rw-r--r-- | m0110_usb/config.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/m0110_usb/config.h b/m0110_usb/config.h index c12e0738da..4563d6da54 100644 --- a/m0110_usb/config.h +++ b/m0110_usb/config.h @@ -1,5 +1,5 @@ /* -Copyright 2011 Jun Wako <wakojun@gmail.com> +Copyright 2011,2012 Jun Wako <wakojun@gmail.com> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* matrix size */ -#define MATRIX_ROWS 8 +#define MATRIX_ROWS 14 #define MATRIX_COLS 8 /* Locking Caps Lock support */ @@ -38,8 +38,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* key combination for command */ #define IS_COMMAND() ( \ - keyboard_report->mods == (MOD_BIT(KB_LSHIFT) | MOD_BIT(KB_LCTRL) | MOD_BIT(KB_LALT) | MOD_BIT(KB_LGUI)) || \ - keyboard_report->mods == (MOD_BIT(KB_LSHIFT) | MOD_BIT(KB_RSHIFT)) \ + keyboard_report->mods == (MOD_BIT(KB_LALT) | MOD_BIT(KB_LGUI)) \ ) |