From 2faaa50b3725bded7b9a858b336a58293f769847 Mon Sep 17 00:00:00 2001 From: Andrew Guschin Date: Sun, 12 Sep 2021 18:29:56 +0400 Subject: Added patches oneclipboard, scrollback-mouse, scrollback-mouse-altscreen --- x.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'x.c') diff --git a/x.c b/x.c index 083b202..2f0e3fc 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 { @@ -447,6 +448,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)); @@ -674,7 +676,6 @@ setsel(char *str, Time t) XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t); if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win) selclear(); - clipcopy(NULL); } void -- cgit v1.2.3