Skip to content

Commit daf4338

Browse files
committed
Fixed #74: TypeError: QwtPlotDict.__init__() [...] with PySide 6.5.0
1 parent 1a79d6a commit daf4338

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
- Unit tests: added support for ``pytest`` and ``coverage`` (60% coverage as of today)
88

9+
- [Issue #74](https://github.com/PlotPyStack/PythonQwt/issues/74) - TypeError: QwtPlotDict.__init__() [...] with PySide 6.5.0
10+
911
- [Issue #77](https://github.com/PlotPyStack/PythonQwt/issues/77) - AttributeError: 'XXX' object has no attribute '_QwtPlot__data'
1012

1113
- [Issue #72](https://github.com/PlotPyStack/PythonQwt/issues/72) - AttributeError: 'QwtScaleWidget' object has no attribute 'maxMajor' / 'maxMinor' / 'stepSize'

qwt/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def __init__(self):
217217
self.scaleWidget = None # QwtScaleWidget
218218

219219

220-
class QwtPlot(QFrame, QwtPlotDict):
220+
class QwtPlot(QwtPlotDict, QFrame):
221221
"""
222222
A 2-D plotting widget
223223

0 commit comments

Comments
 (0)