diff options
author | Mateja <mail@matejamaric.com> | 2021-04-09 22:46:44 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-04-09 22:46:44 +0200 |
commit | c2131a689c5b83d2f5015f5afdce5ab3bc58e734 (patch) | |
tree | 0254a67ee8978af7663be9eca0d3459a58adb8c8 /x.c | |
parent | 09f652d8aff93ba8b7e96d07a58c1aa520f44a2f (diff) | |
download | st-c2131a689c5b83d2f5015f5afdce5ab3bc58e734.tar.gz st-c2131a689c5b83d2f5015f5afdce5ab3bc58e734.zip |
Applied third `scrollback` patch.
Allow scrollback using mouse wheel only when not in MODE_ALTSCREEN.
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 { @@ -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)); |