[gnome-shell] workspacesView: Fix updating when number of workspaces changes
- From: Florian MÃllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] workspacesView: Fix updating when number of workspaces changes
- Date: Tue, 23 Oct 2012 16:29:06 +0000 (UTC)
commit a2b1946b01c4ef0c21f9babddc4b5b26ed69b394
Author: Florian MÃllner <fmuellner gnome org>
Date: Fri Oct 19 19:58:05 2012 +0200
workspacesView: Fix updating when number of workspaces changes
Ouch. This went unnoticed for a long time as by default (using
dynamic workspaces) only one workspace is added at a time, which
happens to work fine.
https://bugzilla.gnome.org/show_bug.cgi?id=686487
js/ui/workspacesView.js | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/workspacesView.js b/js/ui/workspacesView.js
index c5c1e67..c9e83a9 100644
--- a/js/ui/workspacesView.js
+++ b/js/ui/workspacesView.js
@@ -935,9 +935,10 @@ const WorkspacesDisplay = new Lang.Class({
// Assume workspaces are only added at the end
for (let w = oldNumWorkspaces; w < newNumWorkspaces; w++) {
let metaWorkspace = global.screen.get_workspace_by_index(w);
- this._workspaces[m++][w] =
+ this._workspaces[m][w] =
new Workspace.Workspace(metaWorkspace, i);
}
+ m++;
}
this._thumbnailsBox.addThumbnails(oldNumWorkspaces, newNumWorkspaces - oldNumWorkspaces);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]