Browse Source

Don't report release events for mouse wheel

Signed-off-by: Christoph Lohmann <20h@r-36.net>
master
Balazs Kezes 10 years ago
committed by Christoph Lohmann
parent
commit
ba36d1394b
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      st.c

+ 2
- 0
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;
}
}


Loading…
Cancel
Save