1
0
Fork 0

Remove ACT_COMMAND (#8487)

* Remove ACT_COMMAND

* And from action_t as well
This commit is contained in:
Ryan 2020-03-21 16:17:43 +11:00 committed by GitHub
parent eca3f9d935
commit e967471c4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 16 deletions

View file

@ -562,8 +562,6 @@ void process_action(keyrecord_t *record, action_t action) {
action_macro_play(action_get_macro(record, action.func.id, action.func.opt));
break;
#endif
case ACT_COMMAND:
break;
#ifdef SWAP_HANDS_ENABLE
case ACT_SWAP_HANDS:
switch (action.swap.code) {
@ -1041,9 +1039,6 @@ void debug_action(action_t action) {
case ACT_MACRO:
dprint("ACT_MACRO");
break;
case ACT_COMMAND:
dprint("ACT_COMMAND");
break;
case ACT_FUNCTION:
dprint("ACT_FUNCTION");
break;