changeset 1580:1db548d395fb

simplify sequencer.compileGraph call Ignore-this: 436115a9e862f05cdd7ed310fa5e659e
author Drew Perttula <drewp@bigasterisk.com>
date Tue, 30 May 2017 06:14:49 +0000
parents 3c8c9a1deece
children 30c79f1dc4f8
files light9/effect/sequencer.py
diffstat 1 files changed, 0 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/light9/effect/sequencer.py	Mon May 29 23:32:30 2017 +0000
+++ b/light9/effect/sequencer.py	Tue May 30 06:14:49 2017 +0000
@@ -167,20 +167,7 @@
             onChange=lambda: self.graph.addHandler(self.compileGraph))
 
     def compileGraph(self):
-        log.info('compileGraph request')
-        self._compileGraphRun()
-        return
-
-        # may not help
-        if self._compileGraphCall:
-            self._compileGraphCall.cancel()
-        self._compileGraphCall = reactor.callLater(
-            .5,
-            self.graph.addHandler, self._compileGraphRun)
-
-    def _compileGraphRun(self):
         """rebuild our data from the graph"""
-        self._compileGraphCall = None
         log.info('compileGraph start')
         g = self.graph