aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-02-14 02:07:02 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-02-14 02:07:02 +0000
commit659bcd381ee6d43a5fd6b1e0fd7bf3db7dc3f529 (patch)
tree59debc50975672f76f3d62b2573692f74833c08f /src
parenteee3bb221a6b8a338e0ede71d73b4e0842a473f1 (diff)
adjusted paddings of notification again.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3220 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src')
-rw-r--r--src/notificationwindow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notificationwindow.c b/src/notificationwindow.c
index 2e7b46e5..4c11e63b 100644
--- a/src/notificationwindow.c
+++ b/src/notificationwindow.c
@@ -139,16 +139,16 @@ gint notification_window_open(const gchar *message, const gchar *submessage,
g_signal_connect(G_OBJECT(window), "motion_notify_event",
G_CALLBACK(nwin_motion_notify), NULL);
- vbox = gtk_vbox_new(FALSE, 4);
+ vbox = gtk_vbox_new(FALSE, 8);
gtk_container_add(GTK_CONTAINER(window), vbox);
msglabel = gtk_label_new(message);
- gtk_box_pack_start(GTK_BOX(vbox), msglabel, FALSE, FALSE, 4);
+ gtk_box_pack_start(GTK_BOX(vbox), msglabel, FALSE, FALSE, 0);
sublabel = gtk_label_new("");
gtk_label_set_ellipsize(GTK_LABEL(sublabel), PANGO_ELLIPSIZE_END);
gtk_label_set_markup(GTK_LABEL(sublabel), submessage);
- gtk_box_pack_start(GTK_BOX(vbox), sublabel, FALSE, FALSE, 4);
+ gtk_box_pack_start(GTK_BOX(vbox), sublabel, FALSE, FALSE, 0);
gtk_label_set_justify(GTK_LABEL(sublabel), GTK_JUSTIFY_LEFT);
gtk_misc_set_alignment(GTK_MISC(sublabel), 0.0, 0.5);