workspacesView: Don't do any special handling for item-dragging
The code here really only cares about new windows.
This commit is contained in:
parent
e4c07875a3
commit
8097cbbbe3
@ -91,10 +91,6 @@ const WorkspacesView = new Lang.Class({
|
|||||||
global.window_manager.connect('switch-workspace',
|
global.window_manager.connect('switch-workspace',
|
||||||
Lang.bind(this, this._activeWorkspaceChanged));
|
Lang.bind(this, this._activeWorkspaceChanged));
|
||||||
|
|
||||||
this._itemDragBeginId = Main.overview.connect('item-drag-begin',
|
|
||||||
Lang.bind(this, this._dragBegin));
|
|
||||||
this._itemDragEndId = Main.overview.connect('item-drag-end',
|
|
||||||
Lang.bind(this, this._dragEnd));
|
|
||||||
this._windowDragBeginId = Main.overview.connect('window-drag-begin',
|
this._windowDragBeginId = Main.overview.connect('window-drag-begin',
|
||||||
Lang.bind(this, this._dragBegin));
|
Lang.bind(this, this._dragBegin));
|
||||||
this._windowDragEndId = Main.overview.connect('window-drag-end',
|
this._windowDragEndId = Main.overview.connect('window-drag-end',
|
||||||
@ -288,14 +284,6 @@ const WorkspacesView = new Lang.Class({
|
|||||||
if (this._inDrag)
|
if (this._inDrag)
|
||||||
this._dragEnd();
|
this._dragEnd();
|
||||||
|
|
||||||
if (this._itemDragBeginId > 0) {
|
|
||||||
Main.overview.disconnect(this._itemDragBeginId);
|
|
||||||
this._itemDragBeginId = 0;
|
|
||||||
}
|
|
||||||
if (this._itemDragEndId > 0) {
|
|
||||||
Main.overview.disconnect(this._itemDragEndId);
|
|
||||||
this._itemDragEndId = 0;
|
|
||||||
}
|
|
||||||
if (this._windowDragBeginId > 0) {
|
if (this._windowDragBeginId > 0) {
|
||||||
Main.overview.disconnect(this._windowDragBeginId);
|
Main.overview.disconnect(this._windowDragBeginId);
|
||||||
this._windowDragBeginId = 0;
|
this._windowDragBeginId = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user