# HG changeset patch # User Drew Perttula # Date 1339655146 0 # Node ID 3497a0adff67dc35e1533a9cb4c6c0d37208ce19 # Parent 8fba62df5e39e5828725a61a2067c0a12fde0838 reload bug Ignore-this: 55bcd7467ff67eda6dfef1a82e48c882 diff -r 8fba62df5e39 -r 3497a0adff67 light9/curvecalc/curveview.py --- a/light9/curvecalc/curveview.py Thu Jun 14 06:24:39 2012 +0000 +++ b/light9/curvecalc/curveview.py Thu Jun 14 06:25:46 2012 +0000 @@ -289,6 +289,7 @@ self.culled = False # have we been putting off updates? self.entered = False # is the mouse currently over this widget self.selected_points=[] # idx of points being dragged + self.dots = {} # self.bind("",self.focus) dispatcher.connect(self.playPause, "onPlayPause") dispatcher.connect(self.input_time, "input time") @@ -455,7 +456,7 @@ self.update_curve() def print_state(self, msg=""): - if 1: + if 0: print "%s: dragging_dots=%s selecting=%s" % ( msg, self.dragging_dots, self.selecting)