aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window-private.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2009-01-25 11:58:06 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2009-01-25 11:58:06 +0800
commit04024bf52cf11bffb2272e449055a2bd389bd59f (patch)
treec2eaec5b48c323cc0e29b28d3d322a70424207d3 /shell/e-shell-window-private.c
parent32ffc3ca1ca80b2d843fbe28da7deab35fabcbf1 (diff)
downloadgsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.gz
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.bz2
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.lz
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.xz
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.zst
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.zip
Fix a crash when cancelling a task in the task bar.
Tinker with task bar padding. svn path=/branches/kill-bonobo/; revision=37131
Diffstat (limited to 'shell/e-shell-window-private.c')
-rw-r--r--shell/e-shell-window-private.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c
index f16a8a68f5..a33f7b7852 100644
--- a/shell/e-shell-window-private.c
+++ b/shell/e-shell-window-private.c
@@ -263,15 +263,15 @@ e_shell_window_private_init (EShellWindow *shell_window)
priv->content_pane = g_object_ref (widget);
gtk_widget_show (widget);
- widget = gtk_hbox_new (FALSE, 2);
- gtk_container_set_border_width (GTK_CONTAINER (widget), 1);
+ widget = gtk_hbox_new (FALSE, 3);
+ gtk_container_set_border_width (GTK_CONTAINER (widget), 3);
gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0);
priv->status_area = g_object_ref (widget);
gtk_widget_show (widget);
/* Make the status area as large as the task bar. */
gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, NULL, &height);
- gtk_widget_set_size_request (widget, -1, height * 2);
+ gtk_widget_set_size_request (widget, -1, (height * 2) + 6);
container = priv->content_pane;