[gnome-shell] Remove some vestigial code
- From: Dan Winship <danw src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnome-shell] Remove some vestigial code
- Date: Thu, 3 Sep 2009 13:51:00 +0000 (UTC)
commit 38d21c8edf882d893b65a1c35c81f55fceda2391
Author: Dan Winship <danw gnome org>
Date: Thu Sep 3 09:50:17 2009 -0400
Remove some vestigial code
js/ui/workspaces.js | 11 +++--------
1 files changed, 3 insertions(+), 8 deletions(-)
---
diff --git a/js/ui/workspaces.js b/js/ui/workspaces.js
index 59d7ab7..4f0ee0a 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);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]