[gnome-shell/gbsneto/icon-grid-dnd: 27/43] controlsManager: Don't fade icon grid while dragging
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gbsneto/icon-grid-dnd: 27/43] controlsManager: Don't fade icon grid while dragging
- Date: Fri, 2 Aug 2019 19:35:25 +0000 (UTC)
commit 2e4fb404a7e89f9a79bc99a0b762a5c571e69d6d
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Wed Jul 3 14:53:09 2019 -0300
controlsManager: Don't fade icon grid while dragging
As pointed out by designers, fading it signals that the
icon grid is not a drop target, when now it actually is.
Remove the fade effect applied to the icon grid when
dragging.
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/603
js/ui/overviewControls.js | 11 -----------
1 file changed, 11 deletions(-)
---
diff --git a/js/ui/overviewControls.js b/js/ui/overviewControls.js
index e5bb38479..378cc1b32 100644
--- a/js/ui/overviewControls.js
+++ b/js/ui/overviewControls.js
@@ -424,17 +424,6 @@ var ControlsManager = class {
layout.connect('allocation-changed', this._updateWorkspacesGeometry.bind(this));
Main.overview.connect('showing', this._updateSpacerVisibility.bind(this));
- Main.overview.connect('item-drag-begin', () => {
- let activePage = this.viewSelector.getActivePage();
- if (activePage != ViewSelector.ViewPage.WINDOWS)
- this.viewSelector.fadeHalf();
- });
- Main.overview.connect('item-drag-end', () => {
- this.viewSelector.fadeIn();
- });
- Main.overview.connect('item-drag-cancelled', () => {
- this.viewSelector.fadeIn();
- });
}
_updateWorkspacesGeometry() {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]