all repos — openbox @ 8470142e00a25553e5a77393b1b4727c0542bc65

openbox fork - make it a bit more like ryudo

only let bind Move and Resize to Drags
Dana Jansens danakj@orodu.net
commit

8470142e00a25553e5a77393b1b4727c0542bc65

parent

9f064164a4ef720798d6e49a78f1ed92c924a2dd

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M plugins/mouse/mouserc_parse.lplugins/mouse/mouserc_parse.l

@@ -180,9 +180,11 @@ a->data.nextprevdesktop.wrap = FALSE;

} else if (!g_ascii_strcasecmp(action, "previousdesktoprowwrap")) { a = action_new(action_previous_desktop_row); a->data.nextprevdesktop.wrap = TRUE; - } else if (!g_ascii_strcasecmp(action, "move")) { + } else if (!g_ascii_strcasecmp(action, "move") && + mact == MouseAction_Motion) { a = action_new(action_move); - } else if (!g_ascii_strcasecmp(action, "resize")) { + } else if (!g_ascii_strcasecmp(action, "resize") && + mact == MouseAction_Motion) { a = action_new(action_resize); } else { g_warning("Invalid action '%s' in '%s' on line %d", action, path,