Skip to content

Commit

Permalink
Fixed #74: TypeError: QwtPlotDict.__init__() [...] with PySide 6.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRaybaut committed Oct 1, 2023
1 parent 1a79d6a commit daf4338
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

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

- [Issue #74](https://github.com/PlotPyStack/PythonQwt/issues/74) - TypeError: QwtPlotDict.__init__() [...] with PySide 6.5.0

- [Issue #77](https://github.com/PlotPyStack/PythonQwt/issues/77) - AttributeError: 'XXX' object has no attribute '_QwtPlot__data'

- [Issue #72](https://github.com/PlotPyStack/PythonQwt/issues/72) - AttributeError: 'QwtScaleWidget' object has no attribute 'maxMajor' / 'maxMinor' / 'stepSize'
Expand Down
2 changes: 1 addition & 1 deletion qwt/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def __init__(self):
self.scaleWidget = None # QwtScaleWidget


class QwtPlot(QFrame, QwtPlotDict):
class QwtPlot(QwtPlotDict, QFrame):
"""
A 2-D plotting widget
Expand Down

0 comments on commit daf4338

Please sign in to comment.