Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
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
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
-rw-r--r--ChangeLog5
-rw-r--r--shell/ev-sidebar.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 818de8e..a61cfef 100644
--- 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:
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 ();