From: MakotoKurauchi Date: Tue, 14 Aug 2018 16:25:26 +0000 (+0900) Subject: Fix problem that MAGIC_SWAP_ALT_GUI will not be effective when OSM(mod) is used X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3c0c432836fb251c48b9cefc20cc0cdde36758bb;p=qmk_firmware.git Fix problem that MAGIC_SWAP_ALT_GUI will not be effective when OSM(mod) is used --- diff --git a/quantum/keymap_common.c b/quantum/keymap_common.c index f6c8b70d2..1a6af9e08 100644 --- a/quantum/keymap_common.c +++ b/quantum/keymap_common.c @@ -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: