Commit 56c3b6219195970c5100144f40738d38d4c892b2
Committed by
Thiago Franco de Moraes
1 parent
243b0763
Exists in
master
and in
61 other branches
FIX: Fixed ReadBlue stereo on Windows
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
invesalius/data/viewer_volume.py
... | ... | @@ -194,7 +194,6 @@ class Viewer(wx.Panel): |
194 | 194 | if mode == const.STEREO_OFF: |
195 | 195 | ren_win.StereoRenderOff() |
196 | 196 | else: |
197 | - ren_win.StereoRenderOn() | |
198 | 197 | |
199 | 198 | if mode == const.STEREO_RED_BLUE: |
200 | 199 | ren_win.SetStereoTypeToRedBlue() |
... | ... | @@ -213,6 +212,8 @@ class Viewer(wx.Panel): |
213 | 212 | elif mode == const.STEREO_ANAGLYPH: |
214 | 213 | ren_win.SetStereoTypeToAnaglyph() |
215 | 214 | |
215 | + ren_win.StereoRenderOn() | |
216 | + | |
216 | 217 | self.interactor.Render() |
217 | 218 | |
218 | 219 | def CreateBallReference(self): | ... | ... |