Fix problem that MAGIC_SWAP_ALT_GUI will not be effective when OSM(mod) is used

This commit is contained in:
MakotoKurauchi 2018-08-15 01:25:26 +09:00 committed by Drashna Jaelre
parent b4ae07cbb1
commit 3c0c432836
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ action_t action_for_key(uint8_t layer, keypos_t key)
break;
case QK_ONE_SHOT_MOD ... QK_ONE_SHOT_MOD_MAX: ;
// OSM(mod) - One-shot mod
mod = keycode & 0xFF;
mod = mod_config(keycode & 0xFF);
action.code = ACTION_MODS_ONESHOT(mod);
break;
case QK_LAYER_TAP_TOGGLE ... QK_LAYER_TAP_TOGGLE_MAX: