diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2010-12-06 23:01:25 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2011-01-26 21:30:06 +0800 |
commit | dc7941ed458c5da3351ac88761ee46e44f8015b4 (patch) | |
tree | d180b7df5accee4d49941cc64fef7308eaed62ce | |
parent | 844903bf649ddf67e065b0e64f9b14e23ab9d7e2 (diff) | |
download | gsoc2013-empathy-dc7941ed458c5da3351ac88761ee46e44f8015b4.tar gsoc2013-empathy-dc7941ed458c5da3351ac88761ee46e44f8015b4.tar.gz gsoc2013-empathy-dc7941ed458c5da3351ac88761ee46e44f8015b4.tar.bz2 gsoc2013-empathy-dc7941ed458c5da3351ac88761ee46e44f8015b4.tar.lz gsoc2013-empathy-dc7941ed458c5da3351ac88761ee46e44f8015b4.tar.xz gsoc2013-empathy-dc7941ed458c5da3351ac88761ee46e44f8015b4.tar.zst gsoc2013-empathy-dc7941ed458c5da3351ac88761ee46e44f8015b4.zip |
password-dialog: don't display "Remember password" for now
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r-- | libempathy-gtk/empathy-password-dialog.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-password-dialog.c b/libempathy-gtk/empathy-password-dialog.c index 332c9df49..c5a891357 100644 --- a/libempathy-gtk/empathy-password-dialog.c +++ b/libempathy-gtk/empathy-password-dialog.c @@ -266,8 +266,15 @@ empathy_password_dialog_constructed (GObject *object) /* remember password ticky box */ priv->ticky = gtk_check_button_new_with_label (_("Remember password")); + /* Don't add this to the dialog yet because we haven't set up + * everything in the UI properly yet and the MC transition isn't + * ready etc. so we'll just force it to never remember a + * password. */ + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->ticky), FALSE); + /* gtk_box_pack_start (box, priv->ticky, FALSE, FALSE, 0); gtk_widget_show (priv->ticky); + */ g_signal_connect (dialog, "response", G_CALLBACK (password_dialog_response_cb), dialog); |