diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-12-18 19:54:05 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-12-18 19:54:05 -0500 |
commit | d6be9dd5e7258dfaeb93da9ddf4b2474c0e792d7 (patch) | |
tree | fbdb6b358d051ecb7b2bb5645896fb62c4e269d8 | |
parent | 30c21b38a63061926da53cc2917df398c47feda3 (diff) |
node-2d: Call on-child-resize in resize method.
-rw-r--r-- | catbird/node-2d.scm | 3 |
1 files changed, 2 insertions, 1 deletions
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 <node-2d>) 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)) ;;; |