diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 2535f2ee8..17afb899d 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -2132,10 +2132,6 @@ class FolderView extends BaseAppView { this.add_child(this._box); - let action = new Clutter.PanAction({ interpolate: true }); - action.connect('pan', this._onPan.bind(this)); - this._scrollView.add_action(action); - this._deletingFolder = false; this._apps = []; this._redisplay(); @@ -2195,13 +2191,6 @@ class FolderView extends BaseAppView { return icon; } - _onPan(action) { - let [dist_, dx_, dy] = action.get_motion_delta(0); - let adjustment = this._scrollView.vscroll.adjustment; - adjustment.value -= (dy / this._scrollView.height) * adjustment.page_size; - return false; - } - _loadApps() { this._apps = []; const excludedApps = this._folder.get_strv('excluded-apps');