Bug 796849 - Load another QIF file causes "that file already loaded" dialog

Clear the gtk entry for the filename in the
qif_import_load_another_file_cb function.
This commit is contained in:
Robert Fewell 2018-10-18 12:58:30 +01:00
parent 06b2e6bb2f
commit 539a27b5ff

View File

@ -2180,6 +2180,8 @@ gnc_ui_qif_import_load_another_cb(GtkButton * button,
QIFImportWindow * wind = user_data;
GtkAssistant *assistant = GTK_ASSISTANT(wind->window);
gtk_entry_set_text (GTK_ENTRY(wind->filename_entry), "");
gtk_assistant_set_current_page (assistant, 1);
}