summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-12-27 08:55:36 -0500
committerDavid Thompson <dthompson2@worcester.edu>2022-12-27 08:55:36 -0500
commite680f6ca28338026bb8ee43c2eba061ecad1afd9 (patch)
tree293e2bb8490040f0a14504022fb523218741bd81
parent02f1befdcc45b2ad92daef34ab4956eacc9ba32c (diff)
node-2d: Call next-method in <node-2d> on-change method.
-rw-r--r--catbird/node-2d.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/catbird/node-2d.scm b/catbird/node-2d.scm
index df0ca3b..1acb324 100644
--- a/catbird/node-2d.scm
+++ b/catbird/node-2d.scm
@@ -450,7 +450,8 @@
(define-method (on-change (node <node-2d>) slot old new)
(case slot
((origin position rotation scale shear)
- (expire-local-matrix node))))
+ (expire-local-matrix node)))
+ (next-method))
(define-method (resize (node <node-2d>) w h)
(set! (width node) w)