changeset 11896:8aa6462e563c

[gaim-migrate @ 14187] Change "Keep the dialog open" to "Close this window when all transfers finish". I think that's a lot clearer. I didn't change the underlying preference, just inverted the value when setting up the checkbox. That seemed like a lot of work for very little gain. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sat, 29 Oct 2005 21:11:07 +0000
parents 589f290eb8cd
children a1aa681f1448
files src/gtkft.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkft.c	Sat Oct 29 18:36:51 2005 +0000
+++ b/src/gtkft.c	Sat Oct 29 21:11:07 2005 +0000
@@ -710,11 +710,11 @@
 	gtk_box_pack_start(GTK_BOX(vbox2), sw, TRUE, TRUE, 0);
 	gtk_widget_set_size_request(sw,-1, 140);
 
-	/* "Keep the dialog open" */
+	/* "Close this window when all transfers finish" */
 	checkbox = gtk_check_button_new_with_mnemonic(
-			_("_Keep the dialog open"));
+			_("_Close this window when all transfers finish"));
 	gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbox),
-								 dialog->keep_open);
+								 !dialog->keep_open);
 	g_signal_connect(G_OBJECT(checkbox), "toggled",
 					 G_CALLBACK(toggle_keep_open_cb), dialog);
 	gtk_box_pack_start(GTK_BOX(vbox2), checkbox, FALSE, FALSE, 0);