mirror of https://gitlab.com/pamhyr/pamhyr2
network: Simplify scene background.
parent
c3e0593137
commit
461f23058d
|
|
@ -573,11 +573,7 @@ class GraphWidget(QGraphicsView):
|
|||
|
||||
def drawBackground(self, painter, rect):
|
||||
sceneRect = self.sceneRect()
|
||||
|
||||
gradient = QLinearGradient(sceneRect.topLeft(), sceneRect.bottomRight())
|
||||
gradient.setColorAt(0, Qt.lightGray)
|
||||
gradient.setColorAt(1, Qt.lightGray)
|
||||
painter.fillRect(rect.intersected(sceneRect), QBrush(gradient))
|
||||
painter.fillRect(rect.intersected(sceneRect), QBrush(Qt.lightGray))
|
||||
painter.setBrush(Qt.NoBrush)
|
||||
painter.drawRect(sceneRect)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue