summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2018-09-09 16:37:48 -0400
committerDavid Thompson <dthompson2@worcester.edu>2018-09-09 16:37:48 -0400
commitee5ef30d60bb0155064a00786893935fb4136075 (patch)
tree7b0d5ede624df4025a9160456c77c07d706c12be
parent5319a88e99e63fe0864a46b64c195c4d68e2e394 (diff)
node-2d: Fix broken activate method.
* starling/node-2d.scm (activate): Add missing next-method.
-rw-r--r--starling/node-2d.scm3
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))
;;;