diff options
-rw-r--r-- | starling/node.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/starling/node.scm b/starling/node.scm index 1b162f6..a80540b 100644 --- a/starling/node.scm +++ b/starling/node.scm @@ -70,7 +70,9 @@ (active? #:accessor active? #:init-form #f) ;; Determines whether or not the node and all of its children are ;; rendered. - (visible? #:accessor visible? #:init-form #t #:init-keyword #:visible?)) + (visible? #:accessor visible? #:init-form #t #:init-keyword #:visible?) + ;; So that live coding works nicely... + #:metaclass <redefinable-class>) (define (for-each-child proc node) (for-each proc (children node))) |