diff --git a/lib/Gestures/GestureController.vala b/lib/Gestures/GestureController.vala index d7635c97b..aec8241c1 100644 --- a/lib/Gestures/GestureController.vala +++ b/lib/Gestures/GestureController.vala @@ -64,7 +64,6 @@ public class Gala.GestureController : Object { /** * When disabled gesture progress will stay where the gesture ended and not snap to full integers values. - * This will also cause the controller to emit smooth progress information even if animations are disabled. */ public bool snap { get; construct set; default = true; } @@ -173,12 +172,6 @@ public class Gala.GestureController : Object { direction_multiplier *= -1; } - if (snap && !Meta.Prefs.get_gnome_animations ()) { - recognizing = false; - prepare (); - finish (0, progress + direction_multiplier); - } - recognizing_backend = backend; }