Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-sidebar.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2005-02-28 20:08:04 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2005-02-28 20:08:04 (GMT)
commit985d5ac9c0a228b2586f86af06b7ae36ce684bdb (patch)
tree235b03a90a892a00ebfe7259acb3e65b540ca634 /shell/ev-sidebar.c
parent647b94c23ae53b0cf5359a9746e8b51cc5cd186d (diff)
expand the selection widget to be always as wide as the sidebar
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
Diffstat (limited to 'shell/ev-sidebar.c')
-rw-r--r--shell/ev-sidebar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ev-sidebar.c b/shell/ev-sidebar.c
index e79ad60..202c249 100644
--- a/shell/ev-sidebar.c
+++ b/shell/ev-sidebar.c
@@ -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 ();