Don't allow edits to complete when a fill thread is running

This commit is contained in:
Dan Smith 2008-09-04 16:41:47 -07:00
parent 6d8a63e99a
commit 50de15fdac

View File

@ -145,6 +145,9 @@ class MemoryEditor(common.Editor):
return new
def edited(self, rend, path, new, cap):
if self.fill_thread:
return
colnum = self.col(cap)
funcs = {
"Loc" : self.ed_loc,