Browse Source

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

pull/4942/head 0.6.248
MakotoKurauchi 5 years ago
committed by Drashna Jaelre
parent
commit
3c0c432836
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      quantum/keymap_common.c

+ 1
- 1
quantum/keymap_common.c 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:


Loading…
Cancel
Save