diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2010-12-06 23:01:25 +0800 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2010-12-06 23:01:25 +0800 |
commit | 15426cd6aa437bc2772397b77dd0d59a345e004b (patch) | |
tree | eea0e40e80f0bdae556526a1f1d8a4810b884df5 /libempathy-gtk | |
parent | 07921157f6d77826e474eac64a425736a92e2321 (diff) | |
download | gsoc2013-empathy-15426cd6aa437bc2772397b77dd0d59a345e004b.tar gsoc2013-empathy-15426cd6aa437bc2772397b77dd0d59a345e004b.tar.gz gsoc2013-empathy-15426cd6aa437bc2772397b77dd0d59a345e004b.tar.bz2 gsoc2013-empathy-15426cd6aa437bc2772397b77dd0d59a345e004b.tar.lz gsoc2013-empathy-15426cd6aa437bc2772397b77dd0d59a345e004b.tar.xz gsoc2013-empathy-15426cd6aa437bc2772397b77dd0d59a345e004b.tar.zst gsoc2013-empathy-15426cd6aa437bc2772397b77dd0d59a345e004b.zip |
password-dialog: don't display "Remember password" for now
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'libempathy-gtk')
-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); |