Add align time

This commit is contained in:
cncfanatics
2010-09-03 23:33:36 +02:00
parent 41909ae9de
commit cdb81fa93d
3 changed files with 4 additions and 2 deletions

View File

@@ -127,6 +127,7 @@ class FittingView(wx.ListCtrl):
wx.PostEvent(self.mainFrame, FitChanged(fitID=self.activeFitID))
def fitChanged(self, event):
self.Hide()
cFit = controller.Fit.getInstance()
fit = cFit.getFit(event.fitID)
selection = []
@@ -159,4 +160,5 @@ class FittingView(wx.ListCtrl):
for sel in selection:
self.Select(sel)
self.Show()
event.Skip()