diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-03-14 18:57:12 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-03-16 17:29:39 +0800 |
commit | 98648871225823cf7ddc11a746185fe9007d6936 (patch) | |
tree | 10bed2f86d69a89095b8fcf90564a48021996714 /src/empathy-accounts-dialog.c | |
parent | ede1523b824fef2f72b8d60f4efdf78a4fc4a768 (diff) | |
download | gsoc2013-empathy-98648871225823cf7ddc11a746185fe9007d6936.tar gsoc2013-empathy-98648871225823cf7ddc11a746185fe9007d6936.tar.gz gsoc2013-empathy-98648871225823cf7ddc11a746185fe9007d6936.tar.bz2 gsoc2013-empathy-98648871225823cf7ddc11a746185fe9007d6936.tar.lz gsoc2013-empathy-98648871225823cf7ddc11a746185fe9007d6936.tar.xz gsoc2013-empathy-98648871225823cf7ddc11a746185fe9007d6936.tar.zst gsoc2013-empathy-98648871225823cf7ddc11a746185fe9007d6936.zip |
contact-widget: don't display the account when editing our info
All these flags are making this code pretty messy. Hopefully we'll move and
clean it when implementing the new design next cycle.
https://bugzilla.gnome.org/show_bug.cgi?id=672036
Diffstat (limited to 'src/empathy-accounts-dialog.c')
-rw-r--r-- | src/empathy-accounts-dialog.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index 2cc248251..ec40ef3cb 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -788,7 +788,8 @@ account_dialog_got_self_contact (TpConnection *conn, EMPATHY_CONTACT_WIDGET_EDIT_ALIAS | EMPATHY_CONTACT_WIDGET_EDIT_AVATAR | EMPATHY_CONTACT_WIDGET_NO_STATUS | - EMPATHY_CONTACT_WIDGET_EDIT_DETAILS); + EMPATHY_CONTACT_WIDGET_EDIT_DETAILS | + EMPATHY_CONTACT_WIDGET_NO_ACCOUNT); gtk_box_pack_start (GTK_BOX (priv->dialog_content), alig, TRUE, TRUE, 0); gtk_container_add (GTK_CONTAINER (alig), editor); |