mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 18:11:05 -05:00
clutter/click-action: Fix a couple of fall-through warnings
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2319>
This commit is contained in:
parent
63cc69b342
commit
ad76c60ce3
@ -308,6 +308,8 @@ clutter_click_action_handle_event (ClutterAction *action,
|
|||||||
{
|
{
|
||||||
case CLUTTER_TOUCH_BEGIN:
|
case CLUTTER_TOUCH_BEGIN:
|
||||||
has_button = FALSE;
|
has_button = FALSE;
|
||||||
|
|
||||||
|
G_GNUC_FALLTHROUGH;
|
||||||
case CLUTTER_BUTTON_PRESS:
|
case CLUTTER_BUTTON_PRESS:
|
||||||
if (priv->is_held)
|
if (priv->is_held)
|
||||||
return CLUTTER_EVENT_STOP;
|
return CLUTTER_EVENT_STOP;
|
||||||
@ -359,6 +361,8 @@ clutter_click_action_handle_event (ClutterAction *action,
|
|||||||
|
|
||||||
case CLUTTER_TOUCH_END:
|
case CLUTTER_TOUCH_END:
|
||||||
has_button = FALSE;
|
has_button = FALSE;
|
||||||
|
|
||||||
|
G_GNUC_FALLTHROUGH;
|
||||||
case CLUTTER_BUTTON_RELEASE:
|
case CLUTTER_BUTTON_RELEASE:
|
||||||
if (!priv->is_held)
|
if (!priv->is_held)
|
||||||
return CLUTTER_EVENT_STOP;
|
return CLUTTER_EVENT_STOP;
|
||||||
|
Loading…
Reference in New Issue
Block a user