mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
st-button: Handle touch-cancel events
Handling those events is neccessary if a touch event that pressed down a button turns out to be a gesture. In this case the button should be released without emitting the clicked signal.
This commit is contained in:
parent
d75a3484d6
commit
99ce3deeb0
1 changed files with 4 additions and 0 deletions
|
|
@ -262,6 +262,10 @@ st_button_touch_event (ClutterActor *actor,
|
|||
clutter_input_device_sequence_ungrab (device, sequence);
|
||||
return CLUTTER_EVENT_STOP;
|
||||
}
|
||||
else if (event->type == CLUTTER_TOUCH_CANCEL)
|
||||
{
|
||||
st_button_fake_release (button);
|
||||
}
|
||||
|
||||
return CLUTTER_EVENT_PROPAGATE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue