main logo
Subject: [dabo-dev] dabo Commit 3010
Author: Ed Leafe
Posted: 2007/03/31 10:23:03
 
View Entire Thread
New Search


dabo Commit
Revision 3010
Date: 2007-03-31 08:23:02 -0700 (Sat, 31 Mar 2007)
Author: Ed
Trac: http://svn.dabodev.com/trac/dabo/changeset/3010

Changed:
U trunk/dabo/ui/uiwx/dSlider.py

Log:
Changed the Continuous property to default to True until I can figure out the problems on OS X.


Diff:
Modified: trunk/dabo/ui/uiwx/dSlider.py
===================================================================
--- trunk/dabo/ui/uiwx/dSlider.py 2007-03-31 00:00:11 UTC (rev 3009)
+++ trunk/dabo/ui/uiwx/dSlider.py 2007-03-31 15:23:02 UTC (rev 3010)
@@ -26,8 +26,8 @@

def _initEvents(self):
super(dSlider, self)._initEvents()
-# self.Bind(wx.EVT_SCROLL, self._onWxHit)
- self.Bind(wx.EVT_SCROLL_THUMBRELEASE, self._onWxHit)
+ self.Bind(wx.EVT_SCROLL, self._onWxHit)
+# self.Bind(wx.EVT_SCROLL_THUMBRELEASE, self._onWxHit)


def _onWxHit(self, evt):
@@ -41,7 +41,7 @@
try:
ret = self._continuous
except AttributeError:
- ret = self._continuous = False
+ ret = self._continuous = True
return ret

def _setContinuous(self, val):





 
©2007 Ed Leafe
<-- Prior Message New Search Next Message -->