aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-09 22:14:04 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-10 18:47:19 +0800
commit4a8a45fd6495f06a8fef623192cf8674baca71cb (patch)
treeb94c59f1396b5ed444e38e70013df1cae0c17160 /src
parent27bf66610d8229978421fd9d0c0b0ddc7cded40f (diff)
downloadgsoc2013-empathy-4a8a45fd6495f06a8fef623192cf8674baca71cb.tar
gsoc2013-empathy-4a8a45fd6495f06a8fef623192cf8674baca71cb.tar.gz
gsoc2013-empathy-4a8a45fd6495f06a8fef623192cf8674baca71cb.tar.bz2
gsoc2013-empathy-4a8a45fd6495f06a8fef623192cf8674baca71cb.tar.lz
gsoc2013-empathy-4a8a45fd6495f06a8fef623192cf8674baca71cb.tar.xz
gsoc2013-empathy-4a8a45fd6495f06a8fef623192cf8674baca71cb.tar.zst
gsoc2013-empathy-4a8a45fd6495f06a8fef623192cf8674baca71cb.zip
accounts-dialog: set the ypad on the "Name" cell
Some accounts don't have an icon so we shouldn't use the icon cell to set this padding (#601150).
Diffstat (limited to 'src')
-rw-r--r--src/empathy-accounts-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index c11d9a30f..75ed75db9 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -863,7 +863,6 @@ accounts_dialog_model_add_columns (EmpathyAccountsDialog *dialog)
accounts_dialog_model_pixbuf_data_func,
dialog,
NULL);
- g_object_set (cell, "ypad", 4, NULL);
/* Name renderer */
cell = gtk_cell_renderer_text_new ();
@@ -880,6 +879,7 @@ accounts_dialog_model_add_columns (EmpathyAccountsDialog *dialog)
g_signal_connect (cell, "editing-started",
G_CALLBACK (accounts_dialog_name_editing_started_cb),
dialog);
+ g_object_set (cell, "ypad", 4, NULL);
/* Delete column */
cell = empathy_cell_renderer_activatable_new ();