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 | 447 | |
448 | 448 | def OnShowSingle(self, pubsub_evt): |
449 | 449 | index, visibility = pubsub_evt.data |
450 | - print "----------------------" | |
451 | - print "OnShowSingle" | |
452 | - print "index", index | |
453 | - print "visibility", visibility | |
454 | - print "----------------------" | |
455 | 450 | for key in self.surface_list_index.keys(): |
456 | 451 | if key != index: |
457 | 452 | self.SetItemImage(key, not visibility) |
... | ... | @@ -463,12 +458,6 @@ class SurfacesListCtrlPanel(wx.ListCtrl, listmix.TextEditMixin): |
463 | 458 | |
464 | 459 | def OnShowMultiple(self, pubsub_evt): |
465 | 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 | 461 | for key in self.surface_list_index.keys(): |
473 | 462 | if key not in index_list: |
474 | 463 | self.SetItemImage(key, not visibility) | ... | ... |