From f9ce9014961e245bc6162bf20249a836d0bdf98d Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Fri, 10 Jun 2011 14:44:06 +0100 Subject: [PATCH] swipe-action: Remove the required devices call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SwipeAction requires one device/touch point, and that is the default for GestureAction — if GestureAction supported multiple devices/touch points. http://bugzilla.clutter-project.org/show_bug.cgi?id=2585 --- clutter/clutter-swipe-action.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/clutter/clutter-swipe-action.c b/clutter/clutter-swipe-action.c index fbe426126..7ccf37ab7 100644 --- a/clutter/clutter-swipe-action.c +++ b/clutter/clutter-swipe-action.c @@ -203,8 +203,6 @@ clutter_swipe_action_init (ClutterSwipeAction *self) { self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, CLUTTER_TYPE_SWIPE_ACTION, ClutterSwipeActionPrivate); - - clutter_gesture_action_set_required_devices (CLUTTER_GESTURE_ACTION (self), 1); } /**