[gnome-shell] dateMenu: Make sure that the event list fills the available width



commit fbf7528728c6bf094a39059f3e2b7d868bcffb66
Author: Adel Gadllah <adel gadllah gmail com>
Date:   Wed Feb 23 14:34:37 2011 +0100

    dateMenu: Make sure that the event list fills the available width
    
    Currently the menu has a hardcoded width which result into the hover
    effect of the "Open Calendar" item being "cut off" in the middle rather
    then reaching to the edge.
    
    To be consistent with other menu items, make it expand to fill the available
    space.

 js/ui/dateMenu.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/dateMenu.js b/js/ui/dateMenu.js
index 9f6fb27..1f193aa 100644
--- a/js/ui/dateMenu.js
+++ b/js/ui/dateMenu.js
@@ -104,10 +104,10 @@ DateMenuButton.prototype = {
         // Fill up the second column
 
         vbox = new St.BoxLayout({vertical: true});
-        hbox.add(vbox);
+        hbox.add(vbox, { expand: true });
 
         // Event list
-        vbox.add(this._eventList.actor);
+        vbox.add(this._eventList.actor, { expand: true });
 
         item = new PopupMenu.PopupMenuItem(_("Open Calendar"));
         item.connect('activate', Lang.bind(this, this._onOpenCalendarActivate));



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