From d6be9dd5e7258dfaeb93da9ddf4b2474c0e792d7 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 18 Dec 2022 19:54:05 -0500 Subject: node-2d: Call on-child-resize in resize method. --- catbird/node-2d.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/catbird/node-2d.scm b/catbird/node-2d.scm index 090584c..84c86d8 100644 --- a/catbird/node-2d.scm +++ b/catbird/node-2d.scm @@ -446,7 +446,8 @@ (define-method (resize (node ) w h) (set! (width node) w) (set! (height node) h) - (expire-local-bounding-box node)) + (expire-local-bounding-box node) + (on-child-resize (parent node) node)) ;;; -- cgit v1.2.3