[gnome-shell] altTab: Query the correct monitor's size



commit f4572eedd03ea93d7a3651b1177a5b355223e73b
Author: Adel Gadllah <adel gadllah gmail com>
Date:   Sun Jan 16 13:34:31 2011 +0100

    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 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/altTab.js b/js/ui/altTab.js
index b117fc8..aa0e7e2 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++) {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]