aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-sidebar.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2009-02-13 12:44:45 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2009-02-13 12:44:45 +0800
commit4f60c57f314db049153feeb2a8b28cfeaf4fa81a (patch)
tree0e39424b6a3d09bdfcc4b5f2d31572dd94f56732 /shell/e-shell-sidebar.c
parent7986af5369482c4feeaad6880045bf92a4d3f744 (diff)
downloadgsoc2013-evolution-4f60c57f314db049153feeb2a8b28cfeaf4fa81a.tar
gsoc2013-evolution-4f60c57f314db049153feeb2a8b28cfeaf4fa81a.tar.gz
gsoc2013-evolution-4f60c57f314db049153feeb2a8b28cfeaf4fa81a.tar.bz2
gsoc2013-evolution-4f60c57f314db049153feeb2a8b28cfeaf4fa81a.tar.lz
gsoc2013-evolution-4f60c57f314db049153feeb2a8b28cfeaf4fa81a.tar.xz
gsoc2013-evolution-4f60c57f314db049153feeb2a8b28cfeaf4fa81a.tar.zst
gsoc2013-evolution-4f60c57f314db049153feeb2a8b28cfeaf4fa81a.zip
Fix packing of labels in sidebar banner.
Secondary label should not be ellipsized. svn path=/branches/kill-bonobo/; revision=37261
Diffstat (limited to 'shell/e-shell-sidebar.c')
-rw-r--r--shell/e-shell-sidebar.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/e-shell-sidebar.c b/shell/e-shell-sidebar.c
index fecb41426a..671bcad9a0 100644
--- a/shell/e-shell-sidebar.c
+++ b/shell/e-shell-sidebar.c
@@ -225,9 +225,8 @@ shell_sidebar_constructed (GObject *object)
gtk_widget_show (widget);
widget = gtk_label_new (NULL);
- gtk_label_set_ellipsize (GTK_LABEL (widget), PANGO_ELLIPSIZE_MIDDLE);
gtk_misc_set_alignment (GTK_MISC (widget), 1.0, 0.5);
- gtk_box_pack_start (GTK_BOX (container), widget, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0);
shell_sidebar->priv->secondary_label = g_object_ref (widget);
gtk_widget_show (widget);