mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
appDisplay: Consider drop targets on !currentPage as invalid
The iconGrid's getDropTarget() API supports dropping items to adjacent pages just fine, but in the AppDisplay, we clip the grid and don't show those adjacent pages. That doesn't stop getDropTarget() from picking drop targets which are on adjacent pages though, so we need to filter those out in the layer above. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2348>
This commit is contained in:
parent
2e6fd8b730
commit
a69d99527d
1 changed files with 1 additions and 0 deletions
|
|
@ -798,6 +798,7 @@ var BaseAppView = GObject.registerClass({
|
|||
|
||||
// Dragging over invalid parts of the grid cancels the timeout
|
||||
if (item === source ||
|
||||
page !== this._grid.currentPage ||
|
||||
dragLocation === IconGrid.DragLocation.INVALID ||
|
||||
dragLocation === IconGrid.DragLocation.ON_ICON) {
|
||||
this._removeDelayedMove();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue