workspace: Return results of forwarded acceptDrop

Return the results of calls to acceptDrop that we forwarded to the
Workspace object.

This fixes a bug where app icons that were dragged and released above a
window clone would get animated back to their original position
(indicating that nothing happened) even though they opened correctly.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/121
This commit is contained in:
Jonas Dreßler 2019-05-02 17:49:21 +02:00 committed by Florian Müllner
parent 23344701de
commit 259874d731

View File

@ -421,7 +421,7 @@ var WindowClone = GObject.registerClass({
} }
acceptDrop(source, actor, x, y, time) { acceptDrop(source, actor, x, y, time) {
this._workspace.acceptDrop(source, actor, x, y, time); return this._workspace.acceptDrop(source, actor, x, y, time);
} }
_onDragCancelled(_draggable, _time) { _onDragCancelled(_draggable, _time) {