diff options
author | zachir <zachir@librem.one> | 2023-02-20 03:23:46 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-02-20 03:23:46 -0600 |
commit | 5b096d0b13e28811bb810dd6fcc0b3d0ffd714b5 (patch) | |
tree | 673bd97cb428c5d1782b5f7723b008465ac7bd80 /x.c | |
parent | 543d377de17a506b23357c4467e6e2d77a75afdb (diff) |
add scrollback-mouse-altscreen patch
Diffstat (limited to 'x.c')
-rw-r--r-- | x.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -35,6 +35,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 { @@ -474,6 +475,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)); |