Revert "Fixed silly oversight from cncfanatics :O"

This reverts commit 50cfab8649.
This commit is contained in:
Niklas Bölter
2010-11-20 22:26:43 +01:00
parent 50cfab8649
commit 32d57a80f2

View File

@@ -88,12 +88,12 @@ class GraphFrame(wx.Frame):
self.select(0)
self.fitList.fitList.Bind(wx.EVT_LEFT_DCLICK, self.removeItem)
self.mainFrame.Bind(gui.builtinViews.fittingView.FIT_CHANGED, self.draw)
self.mainFrame.Bind(gui.fittingView.FIT_CHANGED, self.draw)
self.Bind(wx.EVT_CLOSE, self.close)
def close(self, event):
self.fitList.fitList.Unbind(wx.EVT_LEFT_DCLICK, handler=self.removeItem)
self.mainFrame.Unbind(gui.builtinViews.fittingView.FIT_CHANGED, handler=self.draw)
self.mainFrame.Unbind(gui.fittingView.FIT_CHANGED, handler=self.draw)
event.Skip()
def getView(self):