diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-05-06 20:47:30 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-05-18 21:40:10 +0800 |
commit | a557339964d56290345f5ad2841ef4a127839655 (patch) | |
tree | 48b000d59967a9d44c3304f92b621c244292ed8f | |
parent | 44162e3ac3604c3e4f14dd01b48fc32cd7fd1007 (diff) | |
download | gsoc2013-empathy-a557339964d56290345f5ad2841ef4a127839655.tar gsoc2013-empathy-a557339964d56290345f5ad2841ef4a127839655.tar.gz gsoc2013-empathy-a557339964d56290345f5ad2841ef4a127839655.tar.bz2 gsoc2013-empathy-a557339964d56290345f5ad2841ef4a127839655.tar.lz gsoc2013-empathy-a557339964d56290345f5ad2841ef4a127839655.tar.xz gsoc2013-empathy-a557339964d56290345f5ad2841ef4a127839655.tar.zst gsoc2013-empathy-a557339964d56290345f5ad2841ef4a127839655.zip |
add some padding
-rw-r--r-- | src/empathy-invite-participant-dialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-invite-participant-dialog.c b/src/empathy-invite-participant-dialog.c index f0ce85e07..e69f6461d 100644 --- a/src/empathy-invite-participant-dialog.c +++ b/src/empathy-invite-participant-dialog.c @@ -240,7 +240,7 @@ empathy_invite_participant_dialog_init (EmpathyInviteParticipantDialog *self) gtk_label_set_markup (GTK_LABEL (label), str); g_free (str); - gtk_box_pack_start (GTK_BOX (content), label, FALSE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (content), label, FALSE, TRUE, 6); gtk_widget_show (label); gtk_dialog_add_button (dialog, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); @@ -264,7 +264,7 @@ empathy_invite_participant_dialog_init (EmpathyInviteParticipantDialog *self) G_CALLBACK (view_selection_changed_cb), self); gtk_box_pack_start (GTK_BOX (content), GTK_WIDGET (self->priv->view), - TRUE, TRUE, 0); + TRUE, TRUE, 6); gtk_widget_show (GTK_WIDGET (self->priv->view)); self->priv->invite_button = gtk_dialog_add_button (dialog, _("Invite"), |