From f4572eedd03ea93d7a3651b1177a5b355223e73b Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Sun, 16 Jan 2011 13:34:31 +0100 Subject: [PATCH] altTab: Query the correct monitor's size We always display the appSwitcher on the primary monitor, so always query for its size rather than that of the focused one. --- js/ui/altTab.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/altTab.js b/js/ui/altTab.js index b117fc840..aa0e7e246 100644 --- a/js/ui/altTab.js +++ b/js/ui/altTab.js @@ -875,9 +875,9 @@ AppSwitcher.prototype = { totalSpacing += this._separator.width + this._list.spacing; // We just assume the whole screen here due to weirdness happing with the passed width - let focus = global.get_focus_monitor(); + let primary = global.get_primary_monitor(); let parentPadding = this.actor.get_parent().get_theme_node().get_horizontal_padding(); - let availWidth = focus.width - parentPadding - this.actor.get_theme_node().get_horizontal_padding(); + let availWidth = primary.width - parentPadding - this.actor.get_theme_node().get_horizontal_padding(); let height = 0; for(let i = 0; i < iconSizes.length; i++) {