diff --git a/js/ui/chrome.js b/js/ui/chrome.js index a49842b9a..7a50c29f4 100644 --- a/js/ui/chrome.js +++ b/js/ui/chrome.js @@ -20,7 +20,8 @@ Chrome.prototype = { _init: function() { let global = Shell.Global.get(); - this.actor = new Clutter.Group(); + // The group itself has zero size so it doesn't interfere with DND + this.actor = new Clutter.Group({ width: 0, height: 0 }); global.stage.add_actor(this.actor); this.nonOverlayActor = new Clutter.Group(); this.actor.add_actor(this.nonOverlayActor);