Changeset - 0541fbe86d2a
[Not reviewed]
default
0 1 0
drewp@bigasterisk.com - 13 years ago 2012-06-15 17:55:00
drewp@bigasterisk.com
CC error message
Ignore-this: a87b8960e4f306e69437c75d9eb45463
1 file changed with 4 insertions and 1 deletions:
0 comments (0 inline, 0 general)
light9/curvecalc/curveview.py
Show inline comments
 
@@ -1137,7 +1137,10 @@ class Curvesetview(object):
 
        f.curveView.goLive()
 

	
 
    def row(self, name):
 
        return [r for r in self.allCurveRows if r.name == name][0]
 
        matches = [r for r in self.allCurveRows if r.name == name]
 
        if not matches:
 
            raise ValueError("no curveRow named %r" % name)
 
        return matches[0]
 

	
 
    def goLive(self):
 
        """for startup performance, none of the curves redraw
0 comments (0 inline, 0 general)