Double recalculation of coordSysGeometry
when both the sectionContext
and geometry
change
#81
Labels
bug
Something isn't working
To reproduce:
and then put a
console.log
into thePointLayer
'supdateCoordSysGeometryObject
:then try updating the data. You will see this:
Now try commenting out the part in
updateData
where you reassign thescaleX
andscaleY
. The result:If you now uncomment the
scaleX
andscaleY
reassignment again, and actually log the$sectionContext
and thepositioningAesthetics
, you will see that during the first update thepositioningAesthetics
are still the old ones, but that the$sectionContext
already has the new values, even though the assignment in theupdateData
function happens the other way around. Why is this happening? Really strange.The text was updated successfully, but these errors were encountered: