fix button up for buttons 8,9 etc.

SVN revision: 27059
This commit is contained in:
Carsten Haitzler 2006-11-12 01:32:30 +00:00
parent 1a558240a3
commit c08e0a8af8
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ void
_ecore_x_event_handle_button_release(XEvent *xevent)
{
/* filter out wheel buttons */
if (xevent->xbutton.button <= 3)
if ((xevent->xbutton.button <= 3) || (xevent->xbutton.button > 7))
{
{
Ecore_X_Event_Mouse_Move *e;