rcxml.c: add Alt-Left/Right to default mousebinds

This commit is contained in:
Johan Malm 2021-12-03 22:02:38 +00:00
parent b65d29c608
commit 04d69d8711

View file

@ -467,6 +467,12 @@ load_default_key_bindings(void)
static struct { static struct {
const char *context, *button, *event, *action, *command; const char *context, *button, *event, *action, *command;
} mouse_combos[] = { } 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", "Press", "Move", NULL },
{ "TitleBar", "Left", "DoubleClick", "ToggleMaximize", NULL }, { "TitleBar", "Left", "DoubleClick", "ToggleMaximize", NULL },
{ "Close", "Left", "Click", "Close", NULL }, { "Close", "Left", "Click", "Close", NULL },