# HG changeset patch # User Richard Laager # Date 1130620267 0 # Node ID 8aa6462e563c6013bc5969d9dc638115c25c3e7f # Parent 589f290eb8cdff1e14cd3909a178cc51ecc1b8c7 [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 diff -r 589f290eb8cd -r 8aa6462e563c src/gtkft.c --- 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);