fixed transparent display for OS X

Fixes: https://launchpad.net/bugs/1117098
This commit is contained in:
Dmitriy Marmyshev 2013-09-17 20:33:18 +04:00
parent c17826937c
commit 0dd6c38139
1 changed files with 2 additions and 0 deletions

View File

@ -175,8 +175,10 @@ class MainDisplay(Display):
def setTransparency(self, enabled):
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()