Commit c545a15d760fe758e75e495fd98a80f4f6bcb77f
1 parent
bf5bc6ac
Exists in
master
network import panel is not being used yet
Showing
1 changed file
with
6 additions
and
6 deletions
Show diff stats
invesalius/gui/frame.py
| ... | ... | @@ -43,7 +43,7 @@ import invesalius.gui.default_viewers as viewers |
| 43 | 43 | import invesalius.gui.dialogs as dlg |
| 44 | 44 | import invesalius.gui.import_panel as imp |
| 45 | 45 | import invesalius.gui.import_bitmap_panel as imp_bmp |
| 46 | -import invesalius.gui.import_network_panel as imp_net | |
| 46 | +# import invesalius.gui.import_network_panel as imp_net | |
| 47 | 47 | import invesalius.project as prj |
| 48 | 48 | import invesalius.session as ses |
| 49 | 49 | import invesalius.utils as utils |
| ... | ... | @@ -194,11 +194,11 @@ class Frame(wx.Frame): |
| 194 | 194 | MaximizeButton(False).Floatable(True). |
| 195 | 195 | Caption(caption).CaptionVisible(True)) |
| 196 | 196 | |
| 197 | - ncaption = _("Retrieve DICOM from PACS") | |
| 198 | - aui_manager.AddPane(imp_net.Panel(self), wx.aui.AuiPaneInfo(). | |
| 199 | - Name("Retrieve").Centre().Hide(). | |
| 200 | - MaximizeButton(True).Floatable(True). | |
| 201 | - Caption(ncaption).CaptionVisible(True)) | |
| 197 | + # ncaption = _("Retrieve DICOM from PACS") | |
| 198 | + # aui_manager.AddPane(imp_net.Panel(self), wx.aui.AuiPaneInfo(). | |
| 199 | + # Name("Retrieve").Centre().Hide(). | |
| 200 | + # MaximizeButton(True).Floatable(True). | |
| 201 | + # Caption(ncaption).CaptionVisible(True)) | |
| 202 | 202 | |
| 203 | 203 | # Add toolbars to manager |
| 204 | 204 | # This is pretty tricky -- order on win32 is inverted when | ... | ... |