Fix typo in python settings app

This commit is contained in:
Allen Ibara
2009-06-16 04:26:08 +00:00
parent a5374d4202
commit 1f02cc6241
@@ -29,7 +29,7 @@ class TextCtrlSetting(wx.TextCtrl):
def onEvtText(self, event):
index = int(self.GetId())
try:
value = float(edit.GetValue())
value = float(self.GetValue())
self.update_callback(index, value)
except:
return