Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix problem that MAGIC_SWAP_ALT_GUI will not be effective when OSM(mo…
…d) is used
  • Loading branch information
MakotoKurauchi authored and drashna committed Jan 25, 2019
1 parent b4ae07c commit 3c0c432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/keymap_common.c
Expand Up @@ -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:
Expand Down

0 comments on commit 3c0c432

Please sign in to comment.