aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-task-widget.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index e5a37cf6ac..9291d926f7 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,10 @@
2001-07-23 Ettore Perazzoli <ettore@ximian.com>
+ * e-task-widget.c (e_task_widget_construct): Uhm, set the usize to
+ `1, -1' instead.
+
+2001-07-23 Ettore Perazzoli <ettore@ximian.com>
+
* e-task-widget.c (e_task_widget_construct): Set the usize for the
contained hbox to 0x0.
diff --git a/shell/e-task-widget.c b/shell/e-task-widget.c
index 47fbecf00c..53cdb70a6d 100644
--- a/shell/e-task-widget.c
+++ b/shell/e-task-widget.c
@@ -114,7 +114,7 @@ e_task_widget_construct (ETaskWidget *task_widget,
gtk_container_add (GTK_CONTAINER (frame), box);
gtk_widget_show (box);
- gtk_widget_set_usize (box, 0, 0);
+ gtk_widget_set_usize (box, 1, -1);
priv->icon_pixbuf = gdk_pixbuf_ref (icon_pixbuf);