Commit 4014a30823cff9c058c09a6e100bf86d9802dbd4

Authored by tatiana
1 parent fbdb35a1

ENC: Removed unnecessary print

invesalius/data/viewer_slice.py
... ... @@ -130,7 +130,6 @@ class Viewer(wx.Panel):
130 130 self.cursor = cursor
131 131  
132 132 def ChangeBrushSize(self, pubsub_evt):
133   - print "*****ChangeBrushSize"
134 133 size = pubsub_evt.data
135 134 self.cursor.SetSize(size)
136 135 self.ren.Render()
... ...
invesalius/gui/task_slice.py
... ... @@ -490,7 +490,6 @@ class EditionTools(wx.Panel):
490 490 # FIXME: Using wx.EVT_SPINCTRL in MacOS it doesnt capture changes only
491 491 # in the text ctrl - so we are capturing only changes on text
492 492 # Strangelly this is being called twice
493   - print "TODO: Send Signal - Change brush size to %s" %self.spin.GetValue()
494 493 ps.Publisher().sendMessage('Set edition brush size',self.spin.GetValue())
495 494  
496 495 def OnComboBrushOp(self, evt):
... ...