GraphicsView: Set a trnasparent background palette
This commit is contained in:
parent
9fdaffaf7d
commit
9a51fc3662
@ -130,6 +130,11 @@ class GraphicsView(QtGui.QGraphicsView):
|
|||||||
self.scaleCenter = False ## should scaling center around view center (True) or mouse click (False)
|
self.scaleCenter = False ## should scaling center around view center (True) or mouse click (False)
|
||||||
self.clickAccepted = False
|
self.clickAccepted = False
|
||||||
|
|
||||||
|
# Set a transparent background QPalette!
|
||||||
|
palette = self.palette()
|
||||||
|
palette.setColor(QtGui.QPalette.Background, QtCore.Qt.transparent)
|
||||||
|
self.setPalette(palette)
|
||||||
|
|
||||||
def setAntialiasing(self, aa):
|
def setAntialiasing(self, aa):
|
||||||
"""Enable or disable default antialiasing.
|
"""Enable or disable default antialiasing.
|
||||||
Note that this will only affect items that do not specify their own antialiasing options."""
|
Note that this will only affect items that do not specify their own antialiasing options."""
|
||||||
|
Loading…
Reference in New Issue
Block a user