Commit 54060d37aafebdbc5375cf4bbe0f698452aef39c
1 parent
b1b1cecd
Exists in
master
and in
6 other branches
FIX: Bug in the cancel load of the files
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/control.py
... | ... | @@ -59,7 +59,7 @@ class Controller(): |
59 | 59 | ps.Publisher().subscribe(self.Progress, "Update dicom load") |
60 | 60 | ps.Publisher().subscribe(self.OnLoadImportPanel, "End dicom load") |
61 | 61 | ps.Publisher().subscribe(self.OnCancelImport, 'Cancel DICOM load') |
62 | - #ps.Publisher().subscribe(self.OnLoadImportPanel, "Show import panel in frame") | |
62 | + ps.Publisher().subscribe(self.OnLoadImportPanel, "Show import panel in frame") | |
63 | 63 | |
64 | 64 | def OnCancelImport(self, pubsub_evt): |
65 | 65 | self.cancel_import = True | ... | ... |