mirror of
https://github.com/labwc/labwc.git
synced 2026-02-16 22:05:27 -05:00
Revert "config: support <mouse><default />"
This reverts commit 3d337857b7.
Revert for now until we have some infrastructure in place to
selectively replace default {key,mouse}binds with custom ones.
Fixes #304
Reported-by: @01micko
This commit is contained in:
parent
bb2a98645b
commit
519375a7f8
3 changed files with 1 additions and 13 deletions
|
|
@ -619,7 +619,7 @@ handle_press_mousebinding(struct view *view, struct server *server,
|
|||
bool activated_any = false;
|
||||
bool activated_any_frame = false;
|
||||
|
||||
wl_list_for_each(mousebind, &rc.mousebinds, link) {
|
||||
wl_list_for_each_reverse(mousebind, &rc.mousebinds, link) {
|
||||
if (ssd_part_contains(mousebind->context, view_area)
|
||||
&& mousebind->button == button
|
||||
&& modifiers == mousebind->modifiers) {
|
||||
|
|
@ -655,7 +655,6 @@ handle_press_mousebinding(struct view *view, struct server *server,
|
|||
activated_any = true;
|
||||
activated_any_frame |= mousebind->context == LAB_SSD_FRAME;
|
||||
actions_run(view, server, &mousebind->actions, resize_edges);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return activated_any && activated_any_frame;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue