From ee5ef30d60bb0155064a00786893935fb4136075 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 9 Sep 2018 16:37:48 -0400 Subject: node-2d: Fix broken activate method. * starling/node-2d.scm (activate): Add missing next-method. --- starling/node-2d.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 )) - (set! (dirty-matrix? node) #t)) + (set! (dirty-matrix? node) #t) + (next-method)) ;;; -- cgit v1.2.3