[style] rename action() to actions_run()

This commit is contained in:
Consolatis 2022-02-24 02:16:19 +01:00 committed by Johan Malm
parent 7d98bc7aa2
commit 953e8a4f9d
5 changed files with 8 additions and 7 deletions

View file

@ -70,7 +70,7 @@ handle_keybinding(struct server *server, uint32_t modifiers, xkb_keysym_t sym)
for (size_t i = 0; i < keybind->keysyms_len; i++) {
if (xkb_keysym_to_lower(sym) == keybind->keysyms[i]) {
wlr_keyboard_set_repeat_info(kb, 0, 0);
action(NULL, server, &keybind->actions, 0);
actions_run(NULL, server, &keybind->actions, 0);
return true;
}
}