Commit 9bea8413e5102ed4286fefd0c1f9d9a63497377a
1 parent
64f82741
Exists in
master
and in
6 other branches
STL: Removed prints
Showing
1 changed file
with
0 additions
and
11 deletions
Show diff stats
invesalius/gui/data_notebook.py
@@ -447,11 +447,6 @@ class SurfacesListCtrlPanel(wx.ListCtrl, listmix.TextEditMixin): | @@ -447,11 +447,6 @@ class SurfacesListCtrlPanel(wx.ListCtrl, listmix.TextEditMixin): | ||
447 | 447 | ||
448 | def OnShowSingle(self, pubsub_evt): | 448 | def OnShowSingle(self, pubsub_evt): |
449 | index, visibility = pubsub_evt.data | 449 | index, visibility = pubsub_evt.data |
450 | - print "----------------------" | ||
451 | - print "OnShowSingle" | ||
452 | - print "index", index | ||
453 | - print "visibility", visibility | ||
454 | - print "----------------------" | ||
455 | for key in self.surface_list_index.keys(): | 450 | for key in self.surface_list_index.keys(): |
456 | if key != index: | 451 | if key != index: |
457 | self.SetItemImage(key, not visibility) | 452 | self.SetItemImage(key, not visibility) |
@@ -463,12 +458,6 @@ class SurfacesListCtrlPanel(wx.ListCtrl, listmix.TextEditMixin): | @@ -463,12 +458,6 @@ class SurfacesListCtrlPanel(wx.ListCtrl, listmix.TextEditMixin): | ||
463 | 458 | ||
464 | def OnShowMultiple(self, pubsub_evt): | 459 | def OnShowMultiple(self, pubsub_evt): |
465 | index_list, visibility = pubsub_evt.data | 460 | index_list, visibility = pubsub_evt.data |
466 | - print "----------------------" | ||
467 | - print "OnShowMultiple" | ||
468 | - print "index", index_list | ||
469 | - print "visibility", visibility | ||
470 | - print "----------------------" | ||
471 | - | ||
472 | for key in self.surface_list_index.keys(): | 461 | for key in self.surface_list_index.keys(): |
473 | if key not in index_list: | 462 | if key not in index_list: |
474 | self.SetItemImage(key, not visibility) | 463 | self.SetItemImage(key, not visibility) |