GNOME Bugzilla – Bug 640493
Cancel button in search entry stopped working
Last modified: 2011-01-25 09:32:15 UTC
This is a fallout from the new swipe-scrolling code, see attached patch.
Created attachment 179257 [details] [review] swipe-scroll: Don't eat button-release events on click The main overview group starts capturing events on button-press events to implement swipe-scrolling. While reactive children of the group which handle both button-press and button-release events don't trigger swipe-scrolling, children that only rely on button-release have stopped working - at least the primary/secondary icons of the search entry are affected. While the capture handler already checks the pointer movement between press and release to determine whether the action should be considered a click rather than a drag, it still blocks the release event from propagating. Instead, only block release events for drag actions, but not for clicks.
Review of attachment 179257 [details] [review]: Seems fine
Attachment 179257 [details] pushed as b9e1d91 - swipe-scroll: Don't eat button-release events on click