From: Carsten Haitzler Date: Sun, 12 Nov 2006 01:32:30 +0000 (+0000) Subject: fix button up for buttons 8,9 etc. X-Git-Tag: submit/devel/efl/20131022.203902~19033 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c08e0a8af8beeb8e288fec2ba02161a5dcee5e71;p=platform%2Fupstream%2Fefl.git fix button up for buttons 8,9 etc. SVN revision: 27059 --- diff --git a/legacy/ecore/src/lib/ecore_x/ecore_x_events.c b/legacy/ecore/src/lib/ecore_x/ecore_x_events.c index 6cfc4fd..328c5c3 100644 --- a/legacy/ecore/src/lib/ecore_x/ecore_x_events.c +++ b/legacy/ecore/src/lib/ecore_x/ecore_x_events.c @@ -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;