[gtk+/gestures: 67/117] gesture: group continue conditions together
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gestures: 67/117] gesture: group continue conditions together
- Date: Thu, 10 Apr 2014 20:30:19 +0000 (UTC)
commit 98504a7d932008d1de8d1882272cc960b463bf7c
Author: Carlos Garnacho <carlosg gnome org>
Date: Tue Apr 8 20:44:38 2014 +0200
gesture: group continue conditions together
gtk/gtkgesture.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtkgesture.c b/gtk/gtkgesture.c
index 1b5d95e..ae84081 100644
--- a/gtk/gtkgesture.c
+++ b/gtk/gtkgesture.c
@@ -134,9 +134,8 @@ _gtk_gesture_effective_n_points (GtkGesture *gesture)
while (g_hash_table_iter_next (&iter, NULL, (gpointer *) &data))
{
- if (data->state == GTK_EVENT_SEQUENCE_DENIED)
- continue;
- if (data->event->type == GDK_TOUCH_END ||
+ if (data->state == GTK_EVENT_SEQUENCE_DENIED ||
+ data->event->type == GDK_TOUCH_END ||
data->event->type == GDK_BUTTON_RELEASE)
continue;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]