From b83faf078b50ba5d1b8526f3579e74dc22242e93 Mon Sep 17 00:00:00 2001 From: Yui Hirasawa Date: Sat, 13 Jun 2020 02:56:10 +1000 Subject: Added mouse scrolling (no modifier) patch --- x.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'x.c') diff --git a/x.c b/x.c index 73545d8..e7ff671 100644 --- a/x.c +++ b/x.c @@ -34,6 +34,7 @@ typedef struct { void (*func)(const Arg *); const Arg arg; uint release; + int altscrn; /* 0: don't care, -1: not alt screen, 1: alt screen */ } MouseShortcut; typedef struct { @@ -448,6 +449,7 @@ mouseaction(XEvent *e, uint release) for (ms = mshortcuts; ms < mshortcuts + LEN(mshortcuts); ms++) { if (ms->release == release && ms->button == e->xbutton.button && + (!ms->altscrn || (ms->altscrn == (tisaltscr() ? 1 : -1))) && (match(ms->mod, state) || /* exact or forced */ match(ms->mod, state & ~forcemousemod))) { ms->func(&(ms->arg)); -- cgit v1.2.3