Commit 4e82c3bd2b187e5d2eca218f836ffea8a25472a8
1 parent
d5674936
Exists in
master
and in
6 other branches
FIX: Error message in th eopen dicom file
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
invesalius/control.py
@@ -59,7 +59,7 @@ class Controller(): | @@ -59,7 +59,7 @@ class Controller(): | ||
59 | ps.Publisher().subscribe(self.Progress, "Update dicom load") | 59 | ps.Publisher().subscribe(self.Progress, "Update dicom load") |
60 | ps.Publisher().subscribe(self.OnLoadImportPanel, "End dicom load") | 60 | ps.Publisher().subscribe(self.OnLoadImportPanel, "End dicom load") |
61 | ps.Publisher().subscribe(self.OnCancelImport, 'Cancel DICOM load') | 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 | def OnCancelImport(self, pubsub_evt): | 64 | def OnCancelImport(self, pubsub_evt): |
65 | self.cancel_import = True | 65 | self.cancel_import = True |
@@ -98,7 +98,6 @@ class Controller(): | @@ -98,7 +98,6 @@ class Controller(): | ||
98 | def OnLoadImportPanel(self, evt): | 98 | def OnLoadImportPanel(self, evt): |
99 | patient_series = evt.data | 99 | patient_series = evt.data |
100 | if not self.cancel_import: | 100 | if not self.cancel_import: |
101 | - print "----- show" | ||
102 | self.LoadImportPanel(patient_series) | 101 | self.LoadImportPanel(patient_series) |
103 | ps.Publisher().sendMessage('Show import panel') | 102 | ps.Publisher().sendMessage('Show import panel') |
104 | else: | 103 | else: |