[gtk+/gestures: 66/140] gesture: group continue conditions together



commit 21d772469282e4f1d17f6dc71a2841420ad7d0e8
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]