Mercurial > code > home > repos > light9
changeset 727:3497a0adff67
reload bug
Ignore-this: 55bcd7467ff67eda6dfef1a82e48c882
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Thu, 14 Jun 2012 06:25:46 +0000 |
parents | 8fba62df5e39 |
children | b71a01086740 |
files | light9/curvecalc/curveview.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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("<Enter>",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)