Don't report release events for mouse wheel

Signed-off-by: Christoph Lohmann <20h@r-36.net>
This commit is contained in:
Balazs Kezes 2014-05-31 22:24:58 +01:00 committed by Christoph Lohmann
parent ede83bd08b
commit ba36d1394b
1 changed files with 2 additions and 0 deletions

2
st.c
View File

@ -829,6 +829,8 @@ mousereport(XEvent *e) {
/* MODE_MOUSEX10: no button release reporting */
if(IS_SET(MODE_MOUSEX10))
return;
if (button == 64 || button == 65)
return;
}
}