Community
Participate
Working Groups
getExtendedBounds() in BorderedNodeFigure will recalculate extendedBounds only if it is null, and it is being set to null by invalidate(), validate() and fireFigureMoved(), which seems right. The only problem is that in fireFigureMoved() extendedBounds is being set to nul after calling super.fireFigureMove(), so all container size calculations are going to use the old extended bounds of this figure, which is wrong. extendedBounds needs to be re-set before calling super.fireFigureMoved().
Created attachment 189317 [details] Patch The patch is attached. Alex, could you take a look? Thanks.