PlotPyStack/PythonQwt

Bug Fix

rahmedov opened this issue · 0 comments

In QwtPlotCanvas.updateStylesheetInfo()

replace
self.__data.styleSheet.hasBorder = not recorder.border.rectList.isEmpty()
with
self.__data.styleSheet.hasBorder = len(recorder.border.rectList) > 0

and

if not recorder.border.rectList.isEmpty():

with
if len(recorder.border.rectList) > 0: