]> git.mdlowis.com Git - proto/labwc.git/commitdiff
rcxml.c: add Alt-Left/Right to default mousebinds
authorJohan Malm <jgm323@gmail.com>
Fri, 3 Dec 2021 22:02:38 +0000 (22:02 +0000)
committerJohan Malm <jgm323@gmail.com>
Fri, 3 Dec 2021 22:02:38 +0000 (22:02 +0000)
src/config/rcxml.c

index d3b8c5c3e5dd7dbf6d26aa1d8f1636b42dcca7ea..1c39b0e45240c8ac4bc21a1acc473881e0aea90f 100644 (file)
@@ -467,6 +467,12 @@ load_default_key_bindings(void)
 static struct {
        const char *context, *button, *event, *action, *command;
 } mouse_combos[] = {
+       { "Frame", "A-Left", "Press", "Focus", NULL},
+       { "Frame", "A-Left", "Press", "Raise", NULL},
+       { "Frame", "A-Left", "Press", "Move", NULL},
+       { "Frame", "A-Right", "Press", "Focus", NULL},
+       { "Frame", "A-Right", "Press", "Raise", NULL},
+       { "Frame", "A-Right", "Press", "Resize", NULL},
        { "TitleBar", "Left", "Press", "Move", NULL },
        { "TitleBar", "Left", "DoubleClick", "ToggleMaximize", NULL },
        { "Close", "Left", "Click", "Close", NULL },