From 38d21c8edf882d893b65a1c35c81f55fceda2391 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 3 Sep 2009 09:50:17 -0400 Subject: [PATCH] Remove some vestigial code --- js/ui/workspaces.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/js/ui/workspaces.js b/js/ui/workspaces.js index 59d7ab7e2..4f0ee0ae9 100644 --- a/js/ui/workspaces.js +++ b/js/ui/workspaces.js @@ -893,7 +893,7 @@ Workspaces.prototype = { } } activeWorkspace.actor.raise_top(); - this._positionWorkspaces(global, activeWorkspace); + this._positionWorkspaces(global); // Save the button size as a global variable so we can us it to create // matching button sizes for workspace remove buttons. @@ -958,7 +958,7 @@ Workspaces.prototype = { let activeWorkspaceIndex = global.screen.get_active_workspace_index(); let activeWorkspace = this._workspaces[activeWorkspaceIndex]; - this._positionWorkspaces(global, activeWorkspace); + this._positionWorkspaces(global); activeWorkspace.actor.raise_top(); for (let w = 0; w < this._workspaces.length; w++) @@ -1002,12 +1002,7 @@ Workspaces.prototype = { // first row.) // // FIXME: need to make the metacity internal layout agree with this! - _positionWorkspaces : function(global, activeWorkspace) { - if (!activeWorkspace) { - let activeWorkspaceIndex = global.screen.get_active_workspace_index(); - activeWorkspace = this._workspaces[activeWorkspaceIndex]; - } - + _positionWorkspaces : function(global) { let gridWidth = Math.ceil(Math.sqrt(this._workspaces.length)); let gridHeight = Math.ceil(this._workspaces.length / gridWidth);