Workaround for Qt bugs on OSX:

- use graphics system 'raster' by default
  - disable OpenGL in QGraphicsView
This commit is contained in:
Luke Campagnola 2012-12-22 21:49:40 -05:00
parent 4ceae9f1a1
commit ef9d730d89
1 changed files with 4 additions and 1 deletions

View File

@ -30,7 +30,10 @@ from . import numpy_fix
if 'linux' in sys.platform: ## linux has numerous bugs in opengl implementation
useOpenGL = False
elif 'darwin' in sys.platform: ## openGL can have a major impact on mac, but also has serious bugs
useOpenGL = True
useOpenGL = False
if QtGui.QApplication.instance() is not None:
print('Warning: QApplication was created before pyqtgraph was imported; there may be problems (to avoid bugs, call QApplication.setGraphicsSystem("raster") before the QApplication is created).')
QtGui.QApplication.setGraphicsSystem('raster') ## work around a variety of bugs in the native graphics system
else:
useOpenGL = False ## on windows there's a more even performance / bugginess tradeoff.