mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
action: fix "first keypress enables display only" ignored in plugins
Change-Id: I131887e4b7d72022026dcd4adbfc6bd3e8bd2ee2
This commit is contained in:
parent
2bf929c7ae
commit
19dc2466c8
1 changed files with 5 additions and 1 deletions
|
@ -1318,7 +1318,11 @@ int get_custom_action(int context,int timeout,
|
||||||
action_cur_t current;
|
action_cur_t current;
|
||||||
init_act_cur(¤t, context, timeout, get_context_map);
|
init_act_cur(¤t, context, timeout, get_context_map);
|
||||||
|
|
||||||
return get_action_worker(&action_last, ¤t);
|
int action = get_action_worker(&action_last, ¤t);
|
||||||
|
|
||||||
|
action = do_backlight(&action_last, ¤t, action);
|
||||||
|
|
||||||
|
return action;
|
||||||
}
|
}
|
||||||
|
|
||||||
intptr_t get_action_data(void)
|
intptr_t get_action_data(void)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue