PlotPyStack / PythonQwt

Qt plotting widgets for Python (pure Python reimplementation of Qwt C++ library)
https://pypi.org/project/PythonQwt/
Other
86 stars 25 forks source link

Bug Fix #47

Closed rahmedov closed 4 years ago

rahmedov commented 6 years ago

In QwtStyleSheetRecorder.drawRects() Replace self.border.rectList += rects[i] with self.border.rectList.append(rects[i])

or with self.border.rectList += [rects[i]]