Commit 9f05fe971aada7a727adafceb98764f20de63c6f

Authored by tatiana
1 parent 69a25f7a

ENH: Hid annotations and measures in notebook (#89)

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
invesalius/gui/data_notebook.py
... ... @@ -41,8 +41,8 @@ class NotebookPanel(wx.Panel):
41 41  
42 42 book.AddPage(MasksListCtrlPanel(book), _("Masks"))
43 43 book.AddPage(SurfacesListCtrlPanel(book), _("Surfaces"))
44   - book.AddPage(MeasuresListCtrlPanel(book), _("Measures"))
45   - book.AddPage(AnnotationsListCtrlPanel(book), _("Annotations"))
  44 + #book.AddPage(MeasuresListCtrlPanel(book), _("Measures"))
  45 + #book.AddPage(AnnotationsListCtrlPanel(book), _("Annotations"))
46 46  
47 47 book.SetSelection(0)
48 48  
... ...