diff options
| -rw-r--r-- | state.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -221,7 +221,7 @@ private # Set this state to true def rise return if @active - self.class.depends.each{ |x| x.hold(self) } + @deps.each{ |x| x.hold(self) } self.class.rising_edge.call(params) @active = true State.depsolve_all |
