1
0
Fork 0
forked from forks/qmk_firmware

More Fixes.

This commit is contained in:
Ian Sterling 2019-06-27 19:22:03 -07:00
parent 7568b30982
commit 773efb5a1f

View file

@ -57,7 +57,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
uint32_t layer_state_set_user(uint32_t state) {
return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
}
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case DVORAK:
@ -77,4 +78,4 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return false;
}
return true;
}
};