diff options
author | David Thompson <dthompson2@worcester.edu> | 2018-09-09 16:37:48 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2018-09-09 16:37:48 -0400 |
commit | ee5ef30d60bb0155064a00786893935fb4136075 (patch) | |
tree | 7b0d5ede624df4025a9160456c77c07d706c12be | |
parent | 5319a88e99e63fe0864a46b64c195c4d68e2e394 (diff) |
node-2d: Fix broken activate method.
* starling/node-2d.scm (activate): Add missing next-method.
-rw-r--r-- | starling/node-2d.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/starling/node-2d.scm b/starling/node-2d.scm index 19ca545..0e00d43 100644 --- a/starling/node-2d.scm +++ b/starling/node-2d.scm @@ -403,7 +403,8 @@ (next-method)) (define-method (activate (node <node-2d>)) - (set! (dirty-matrix? node) #t)) + (set! (dirty-matrix? node) #t) + (next-method)) ;;; |