1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-24 00:34:04 +00:00

Fix initial directory in file chooser window.

This commit is contained in:
Josh Elsasser 2007-04-02 18:15:42 +00:00
parent 2201bf3912
commit 5b6ac5744c

View file

@ -141,7 +141,7 @@ makeaddwind(GtkWindow *parent, add_torrents_func_t addfunc, void *cbdata) {
pref = tr_prefs_get( PREF_ID_DIR );
if( NULL != pref )
{
gtk_file_chooser_set_current_folder( GTK_FILE_CHOOSER( getdir ), pref );
gtk_file_chooser_set_current_folder( GTK_FILE_CHOOSER( wind ), pref );
}
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dircheck), FALSE);