1
0
Fork 0

The Ordinary Layout is the layout you are looking for. Come and see.

This commit is contained in:
Nicholas Keene 2016-05-05 23:18:48 -05:00
parent 90a6534729
commit 481c74cc56
2 changed files with 1 additions and 1 deletions

View file

@ -430,7 +430,7 @@ void matrix_init_user(void) {
// Runs constantly in the background, in a loop.
void matrix_scan_user(void) {
// shift or caps lock turns on red light
if((keyboard_report->mods & (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT))) || (host_keyboard_leds() & (1<<USB_LED_CAPS_LOCK))) {
if(caps_shift || (keyboard_report->mods & MOD_BIT(KC_RSFT)) || (host_keyboard_leds() & (1<<USB_LED_CAPS_LOCK))) {
ergodox_right_led_1_on();
} else {
ergodox_right_led_1_off();