aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-01-28 08:58:38 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-01-28 08:58:38 +0800
commit95b04534574e410732ffbee5545f93a67f1e07c7 (patch)
treea68267d643590de373c9b4a294e04d825c7c1499 /shell
parenta91380ebe5a3c30b37d02964cadd712f7c9a60fa (diff)
downloadgsoc2013-evolution-95b04534574e410732ffbee5545f93a67f1e07c7.tar
gsoc2013-evolution-95b04534574e410732ffbee5545f93a67f1e07c7.tar.gz
gsoc2013-evolution-95b04534574e410732ffbee5545f93a67f1e07c7.tar.bz2
gsoc2013-evolution-95b04534574e410732ffbee5545f93a67f1e07c7.tar.lz
gsoc2013-evolution-95b04534574e410732ffbee5545f93a67f1e07c7.tar.xz
gsoc2013-evolution-95b04534574e410732ffbee5545f93a67f1e07c7.tar.zst
gsoc2013-evolution-95b04534574e410732ffbee5545f93a67f1e07c7.zip
Expand the label, this fixes the problem that people were having in the
2004-01-27 Rodney Dawes <dobey@ximian.com> * e-task-bar.c (init): Expand the label, this fixes the problem that people were having in the shell window with the preview pane and the weird warning from ECLippedLabel for urls Fixes #52937 for good svn path=/trunk/; revision=24484
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog8
-rw-r--r--shell/e-task-bar.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index f389453ff8..74c40e7986 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,11 @@
+2004-01-27 Rodney Dawes <dobey@ximian.com>
+
+ * e-task-bar.c (init): Expand the label, this fixes the problem
+ that people were having in the shell window with the preview pane
+ and the weird warning from ECLippedLabel for urls
+
+ Fixes #52937 for good
+
2004-01-26 David Trowbridge <trowbrds@cs.colorado.edu>
* Makefile.am: add definition for EVOLUTION_HELPDIR
diff --git a/shell/e-task-bar.c b/shell/e-task-bar.c
index 02ca5cbcdf..b31527a36b 100644
--- a/shell/e-task-bar.c
+++ b/shell/e-task-bar.c
@@ -105,7 +105,7 @@ init (ETaskBar *task_bar)
label = e_clipped_label_new ("", PANGO_WEIGHT_NORMAL, 1.0);
gtk_widget_show (label);
- gtk_box_pack_start (GTK_BOX (task_bar), label, FALSE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (task_bar), label, TRUE, TRUE, 0);
gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
task_bar->priv->message_label = E_CLIPPED_LABEL (label);