diff --git a/src/axisitem.cpp b/src/axisitem.cpp index 9fd74e9d..5b9e015a 100644 --- a/src/axisitem.cpp +++ b/src/axisitem.cpp @@ -43,6 +43,7 @@ void AxisItem::setRange(const RangeF &range) prepareGeometryChange(); _range = range; updateBoundingRect(); + update(); } void AxisItem::setSize(qreal size) @@ -50,6 +51,7 @@ void AxisItem::setSize(qreal size) prepareGeometryChange(); _size = size; updateBoundingRect(); + update(); } void AxisItem::setLabel(const QString& label) @@ -57,6 +59,7 @@ void AxisItem::setLabel(const QString& label) prepareGeometryChange(); _label = label; updateBoundingRect(); + update(); } void AxisItem::updateBoundingRect() diff --git a/src/scaleitem.cpp b/src/scaleitem.cpp index d2a786b4..1639e5a6 100644 --- a/src/scaleitem.cpp +++ b/src/scaleitem.cpp @@ -121,6 +121,7 @@ void ScaleItem::setZoom(int z, qreal lat) _lat = lat; computeScale(); updateBoundingRect(); + update(); } void ScaleItem::setZoom(int z) @@ -129,6 +130,7 @@ void ScaleItem::setZoom(int z) _zoom = z; computeScale(); updateBoundingRect(); + update(); } void ScaleItem::setUnits(enum Units units) @@ -137,4 +139,5 @@ void ScaleItem::setUnits(enum Units units) _units = units; computeScale(); updateBoundingRect(); + update(); }