fixed transparent display for OS X

Fixes: https://launchpad.net/bugs/1117098
This commit is contained in:
Dmitriy Marmyshev 2013-09-17 20:23:45 +04:00
parent d9b2d33f05
commit 5d648f80c6
1 changed files with 2 additions and 0 deletions

View File

@ -167,8 +167,10 @@ class MainDisplay(Display):
"""
if enabled:
self.setAutoFillBackground(False)
self.setStyleSheet("QGraphicsView {background: transparent;}")
else:
self.setAttribute(QtCore.Qt.WA_NoSystemBackground, False)
self.setStyleSheet("QGraphicsView {background: white;}")
self.setAttribute(QtCore.Qt.WA_TranslucentBackground, enabled)
self.repaint()