feat/clipboard #6

Merged
syrell merged 2 commits from feat/clipboard into custom 2023-06-27 22:30:31 +02:00
Showing only changes of commit 75dea136df - Show all commits

4
x.c
View File

@ -714,7 +714,9 @@ brelease(XEvent *e)
if (mouseaction(e, 1))
return;
if (btn == Button1)
if (btn == Button3)
selpaste(NULL);
else if (btn == Button1)
mousesel(e, 1);
}