diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-09 22:14:04 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-10 18:47:19 +0800 |
commit | 4a8a45fd6495f06a8fef623192cf8674baca71cb (patch) | |
tree | b94c59f1396b5ed444e38e70013df1cae0c17160 | |
parent | 27bf66610d8229978421fd9d0c0b0ddc7cded40f (diff) | |
download | gsoc2013-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).
-rw-r--r-- | src/empathy-accounts-dialog.c | 2 |
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 (); |