]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-password-dialog.c
password-dialog: don't display "Remember password" for now
[empathy.git] / libempathy-gtk / empathy-password-dialog.c
index 332c9df4993503cfee6aac40a1e027773abc53dc..c5a891357d281cdab9c83fd8a3ab22bda072df1c 100644 (file)
@@ -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);