Version 2.7.1
🛠️ Bug fixes:
- Fixed update
canvasRect
type toQRectF
for intersection checks inCircleSVGShape
, following this bug fix inPythonQwt
V0.14.4 - Fixed regression with respect to
guiqwt
regarding plot items instantiation:guiqwt
was allowing to instantiate plot items without needing to create aQApplication
instance (no GUI event loop was required)- This was not the case with
plotpy
, so that it was not possible -for example- to serialize/deserialize plot items to JSON without creating aQApplication
instance - This has been fixed by removing the
QIcon
instantiation from the plot items constructors (call toQwtPlotItem.setIcon
method). Note that -in the meantime-QwtPlotItem.setIcon
andQwtPlotItem.icon
methods have also been removed in PythonQwt V0.14.3. Code relying on this feature should thus be updated to use the newget_icon_name
method instead, i.e.get_icon(item.get_icon_name())
instead ofitem.icon()
.
- Issue #26 - Item list panel should not allow to select a non-selectable item