[workspaceSwitcher] Display on primary monitor

Display it only on the primary monitor to be consistent with other
elements like the appSwitcher, messageTray and the overview.

https://bugzilla.gnome.org/show_bug.cgi?id=619854
This commit is contained in:
Adel Gadllah 2010-05-27 19:57:08 +02:00
parent d31e905978
commit 2ca70e9e76

View File

@ -65,9 +65,9 @@ WorkspaceSwitcherPopup.prototype = {
},
_position: function() {
let focus = global.get_focus_monitor();
this._container.x = focus.x + Math.floor((focus.width - this._container.width) / 2);
this._container.y = focus.y + Math.floor((focus.height - this._container.height) / 2);
let primary = global.get_primary_monitor();
this._container.x = primary.x + Math.floor((primary.width - this._container.width) / 2);
this._container.y = primary.y + Math.floor((primary.height - this._container.height) / 2);
},
_show : function() {