mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
implement Resize as an action
this requires action() to know the resize edges to use, so thread them through
This commit is contained in:
parent
8eab1e8132
commit
031ced85ef
5 changed files with 24 additions and 13 deletions
|
|
@ -65,7 +65,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]) {
|
||||
action(server, keybind->action,
|
||||
keybind->command);
|
||||
keybind->command, 0);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue