diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2025-02-08 10:50:10 +0000 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2025-02-08 10:50:10 +0000 |
commit | b4df2d1b007062b57ae9953156be9344dc6c50e4 (patch) | |
tree | ad1ab4f4bb794affddc16ed99fbee74506010722 /x.c | |
parent | 98610fcd37f655d44586323dc86c1d013c2798ce (diff) |
added scrolling to my personal st branch
Diffstat (limited to 'x.c')
-rw-r--r-- | x.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 { @@ -455,6 +456,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)); |