diff options
author | tsxv478 <vt0451@yandex.ru> | 2022-07-17 04:23:50 +0300 |
---|---|---|
committer | tsxv478 <vt0451@yandex.ru> | 2022-07-17 04:23:50 +0300 |
commit | 02760c4ad088e94d69976b5d5367b918fccd69bf (patch) | |
tree | 7bcaa8560049cb923862b2fabf7899d01058a5d1 /x.c | |
parent | 1249b14c3c2f976e3253ba7339d67ccd03ee6868 (diff) |
scrollback mouse altscreen patch
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)); |