mirror of
https://github.com/labwc/labwc.git
synced 2026-02-14 04:28:07 -05:00
Fix release keybindings being triggered after mouse bindings
This commit is contained in:
parent
bb1d0b4352
commit
5b1ab48abf
2 changed files with 5 additions and 4 deletions
|
|
@ -177,6 +177,8 @@ const char *action_names[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
extern struct keybind *cur_keybind;
|
||||
|
||||
void
|
||||
action_arg_add_str(struct action *action, const char *key, const char *value)
|
||||
{
|
||||
|
|
@ -707,6 +709,8 @@ actions_run(struct view *activator, struct server *server,
|
|||
return;
|
||||
}
|
||||
|
||||
cur_keybind = NULL;
|
||||
|
||||
struct view *view;
|
||||
struct action *action;
|
||||
wl_list_for_each(action, actions, link) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue