From 241b4cd1c851f748dd423c8eea2c4cbda7c5c0bb Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Sat, 29 Jun 2019 00:44:27 -0300 Subject: [PATCH] allView: Set delegate field DnD still relies on the _delegate field being set, so set it. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/603 --- js/ui/appDisplay.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 83fd57745..4aa889072 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -252,6 +252,7 @@ var AllView = class AllView extends BaseAppView { this.actor = new St.Widget({ layout_manager: new Clutter.BinLayout(), x_expand: true, y_expand: true }); this.actor.add_actor(this._scrollView); + this._grid._delegate = this; this._scrollView.set_policy(St.PolicyType.NEVER, St.PolicyType.EXTERNAL);