Commit 0f6f63877370c996dc739333642a9284c9e153b7

Authored by Thiago Franco de Moraes
1 parent d3118ec8
Exists in watershed

Not hidding wx's cursor when marking to watershed

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
invesalius/data/styles.py
... ... @@ -722,12 +722,12 @@ class WaterShedInteractorStyle(DefaultInteractorStyle):
722 722 if (self.viewer.slice_.buffer_slices[self.orientation].mask is None):
723 723 return
724 724 self.viewer.slice_data.cursor.Show()
725   - self.viewer.interactor.SetCursor(wx.StockCursor(wx.CURSOR_BLANK))
  725 + #self.viewer.interactor.SetCursor(wx.StockCursor(wx.CURSOR_BLANK))
726 726 self.viewer.interactor.Render()
727 727  
728 728 def OnLeaveInteractor(self, obj, evt):
729 729 self.viewer.slice_data.cursor.Show(0)
730   - self.viewer.interactor.SetCursor(wx.StockCursor(wx.CURSOR_DEFAULT))
  730 + #self.viewer.interactor.SetCursor(wx.StockCursor(wx.CURSOR_DEFAULT))
731 731 self.viewer.interactor.Render()
732 732  
733 733 def WOnScrollBackward(self, obj, evt):
... ...