We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c900aba commit d2f38b5Copy full SHA for d2f38b5
lib/Gestures/GestureController.vala
@@ -64,7 +64,6 @@ public class Gala.GestureController : Object {
64
65
/**
66
* When disabled gesture progress will stay where the gesture ended and not snap to full integers values.
67
- * This will also cause the controller to emit smooth progress information even if animations are disabled.
68
*/
69
public bool snap { get; construct set; default = true; }
70
@@ -173,12 +172,6 @@ public class Gala.GestureController : Object {
173
172
direction_multiplier *= -1;
174
}
175
176
- if (snap && !Meta.Prefs.get_gnome_animations ()) {
177
- recognizing = false;
178
- prepare ();
179
- finish (0, progress + direction_multiplier);
180
- }
181
-
182
recognizing_backend = backend;
183
184
0 commit comments