Commit 4e82c3bd2b187e5d2eca218f836ffea8a25472a8

Authored by Paulo Henrique Junqueira Amorim
1 parent d5674936

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 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
... ... @@ -98,7 +98,6 @@ class Controller():
98 98 def OnLoadImportPanel(self, evt):
99 99 patient_series = evt.data
100 100 if not self.cancel_import:
101   - print "----- show"
102 101 self.LoadImportPanel(patient_series)
103 102 ps.Publisher().sendMessage('Show import panel')
104 103 else:
... ...