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.
2 parents c15fcee + 0c0b662 commit ece76a0Copy full SHA for ece76a0
gestures.js
@@ -113,6 +113,13 @@ export function enable(extension) {
113
return Clutter.EVENT_PROPAGATE;
114
}
115
116
+ // if our vertical gesture is disabled, propagate always!
117
+ // (might be used for a vertical-workspaces addon)
118
+ if (gestureWorkspaceFingers() === 0) {
119
+ swipeTrackersEnable();
120
+ return Clutter.EVENT_PROPAGATE;
121
+ }
122
+
123
let dir_y = -dy * natural * Settings.prefs.swipe_sensitivity[1];
124
// if not Tiling.inPreview and swipe is UP => propagate event to overview
125
if (!Tiling.inPreview && dir_y > 0) {
0 commit comments