workspacesView: Handle reordering of workspaces
MetaWorkspaceManager gained the ability to reorder workspaces, so make sure to pick up the new order when that happens. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/620
This commit is contained in:
parent
55b036170b
commit
d0da96ad29
@ -101,6 +101,14 @@ var WorkspacesView = class extends WorkspacesViewBase {
|
|||||||
this._updateWorkspacesId =
|
this._updateWorkspacesId =
|
||||||
workspaceManager.connect('notify::n-workspaces',
|
workspaceManager.connect('notify::n-workspaces',
|
||||||
this._updateWorkspaces.bind(this));
|
this._updateWorkspaces.bind(this));
|
||||||
|
this._reorderWorkspacesId =
|
||||||
|
workspaceManager.connect('workspaces-reordered', () => {
|
||||||
|
this._workspaces.sort((a, b) => {
|
||||||
|
return a.metaWorkspace.index() - b.metaWorkspace.index();
|
||||||
|
});
|
||||||
|
this._updateWorkspaceActors(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
this._overviewShownId =
|
this._overviewShownId =
|
||||||
Main.overview.connect('shown', () => {
|
Main.overview.connect('shown', () => {
|
||||||
@ -287,6 +295,7 @@ var WorkspacesView = class extends WorkspacesViewBase {
|
|||||||
global.window_manager.disconnect(this._switchWorkspaceNotifyId);
|
global.window_manager.disconnect(this._switchWorkspaceNotifyId);
|
||||||
let workspaceManager = global.workspace_manager;
|
let workspaceManager = global.workspace_manager;
|
||||||
workspaceManager.disconnect(this._updateWorkspacesId);
|
workspaceManager.disconnect(this._updateWorkspacesId);
|
||||||
|
workspaceManager.disconnect(this._reorderWorkspacesId);
|
||||||
}
|
}
|
||||||
|
|
||||||
startSwipeScroll() {
|
startSwipeScroll() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user