From afe47def28b3e9bdb1486e410319e3d145559265 Mon Sep 17 00:00:00 2001 From: KIU Shueng Chuan Date: Sat, 12 Jun 2021 14:05:47 +0800 Subject: [PATCH] fix ScatterPlot render issues on PyQt6 6.1 --- pyqtgraph/graphicsItems/ScatterPlotItem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyqtgraph/graphicsItems/ScatterPlotItem.py b/pyqtgraph/graphicsItems/ScatterPlotItem.py index 0a397980..7ae0e372 100644 --- a/pyqtgraph/graphicsItems/ScatterPlotItem.py +++ b/pyqtgraph/graphicsItems/ScatterPlotItem.py @@ -120,7 +120,7 @@ def renderSymbol(symbol, size, pen, brush, device=None): penPxWidth = max(math.ceil(pen.widthF()), 1) if device is None: device = QtGui.QImage(int(size+penPxWidth), int(size+penPxWidth), QtGui.QImage.Format.Format_ARGB32) - device.fill(0) + device.fill(QtCore.Qt.GlobalColor.transparent) p = QtGui.QPainter(device) try: p.setRenderHint(p.RenderHint.Antialiasing)