p71 - fixed guibulkimport. thought I'd already done that, but there you go..

added 4B detection to HudCache filling
added primitive filling code for foldToStreetXCB, this'll not be correct for all cases yet
This commit is contained in:
steffen123
2008-08-31 21:22:36 +01:00
parent 0b96d49b23
commit a289f7b151
4 changed files with 89 additions and 37 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ class GuiBulkImport (threading.Thread):
print "BulkImport is not recursive - please select the final directory in which the history files are"
else:
self.inputFile=self.path+os.sep+file
fpdb_import.import_file_dict(self, self.settings)
fpdb_import.import_file_dict(self, self.settings, False)
print "GuiBulkImport.import_dir done"
def load_clicked(self, widget, data=None):
@@ -69,7 +69,7 @@ class GuiBulkImport (threading.Thread):
if os.path.isdir(self.inputFile):
self.import_dir()
else:
fpdb_import.import_file_dict(self, self.settings)
fpdb_import.import_file_dict(self, self.settings, False)
def get_vbox(self):
"""returns the vbox of this thread"""