]> www.fi.muni.cz Git - evince.git/commitdiff
expand the selection widget to be always as wide as the sidebar
authorCarlos Garcia Campos <carlosgc@gnome.org>
Mon, 28 Feb 2005 20:08:04 +0000 (20:08 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Mon, 28 Feb 2005 20:08:04 +0000 (20:08 +0000)
2005-02-28  Carlos Garcia Campos <carlosgc@gnome.org>
* shell/ev-sidebar.c: expand the selection widget to be always as
wide as the sidebar

ChangeLog
shell/ev-sidebar.c

index 818de8ec1e9c7407b06212322279c22d81e312ee..a61cfefe45de4b1bd59d081e51ac4fa8767c9869 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-28  Carlos Garcia Campos <carlosgc@gnome.org>
+
+       * shell/ev-sidebar.c: expand the selection widget to be always as
+       wide as the sidebar
+
 2005-02-28  Marco Pesenti Gritti  <marco@gnome.org>
 
        * shell/ev-sidebar-thumbnails.c:
index e79ad60c4b3391a6096d3d3f31e327f64e1c465d..202c249fa13c1e4449949bb1ebd1cc7d95e058d3 100644 (file)
@@ -268,7 +268,7 @@ ev_sidebar_init (EvSidebar *ev_sidebar)
        ev_sidebar->priv->label = gtk_label_new ("");
        gtk_box_pack_start (GTK_BOX (select_hbox),
                            ev_sidebar->priv->label,
-                           TRUE, FALSE, 0);
+                           FALSE, FALSE, 0);
        gtk_widget_show (ev_sidebar->priv->label);
 
        arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE);
@@ -278,7 +278,7 @@ ev_sidebar_init (EvSidebar *ev_sidebar)
        gtk_container_add (GTK_CONTAINER (select_button), select_hbox);
        gtk_widget_show (select_hbox);
 
-       gtk_box_pack_start (GTK_BOX (hbox), select_button, FALSE, FALSE, 0);
+       gtk_box_pack_start (GTK_BOX (hbox), select_button, TRUE, TRUE, 0);
        gtk_widget_show (select_button);
 
        close_button = gtk_button_new ();