Four Banger: Clean Up Indentation (#4322)

Make indentation consistent and match project standards
This commit is contained in:
Alex Mayer 2018-11-02 01:21:28 -04:00 committed by Drashna Jaelre
parent 7a22da9f05
commit 6eb7501eb0
3 changed files with 19 additions and 19 deletions

View file

@ -5,20 +5,20 @@ enum custom_keycodes {
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
LAYOUT_ortho_2x2(
KC_1, KC_U,
KC_P, UP_URL
),
LAYOUT_ortho_2x2(
KC_1, KC_U,
KC_P, UP_URL
),
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case UP_URL:
if (record->event.pressed) {
SEND_STRING("http://1upkeyboards.com");
}
return false;
break;
}
return true;
switch (keycode) {
case UP_URL:
if (record->event.pressed) {
SEND_STRING("http://1upkeyboards.com");
}
return false;
break;
}
return true;
}