* src/import-export/qif-import/druid-qif-import.c: raise the

import window after choosing a file.  I think this fixes #114209
	  but I couldn't reproduce the problem so I couldn't actually test
	  the fix.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8611 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2003-06-15 19:28:50 +00:00
parent abf1884181
commit 7eff813058
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2003-06-15 Derek Atkins <derek@ihtfp.com>
* src/import-export/qif-import/druid-qif-import.c: raise the
import window after choosing a file. I think this fixes #114209
but I couldn't reproduce the problem so I couldn't actually test
the fix.
2003-06-14 Derek Atkins <derek@ihtfp.com>
* src/backend/file/io-gncxml-v2.c: make the book-string an extern

View File

@ -377,6 +377,9 @@ gnc_ui_qif_import_select_file_cb(GtkButton * button,
gnc_set_string_option("__paths", "Import QIF", default_dir);
g_free(default_dir);
g_free(file_name);
/* Now raise the window to be sure it's visible */
gdk_window_raise(wind->window->window);
}