diff -r 50a8192fbb23 -r 852af7c6f0ef IDEFrame.py --- a/IDEFrame.py Thu Jan 24 00:42:59 2013 +0100 +++ b/IDEFrame.py Thu Jan 24 00:45:54 2013 +0100 @@ -931,8 +931,7 @@ project_infos["tabs"] = self.SaveTabLayout(self.TabsOpened) if self.EnableDebug: project_infos["debug_vars"] = self.DebugVariablePanel.GetDebugVariables() - project_infos["debug_axis3D"] = self.DebugVariablePanel.GetAxis3D() - + self.Config.Write("projects", cPickle.dumps(projects)) self.Config.Flush() @@ -948,9 +947,8 @@ if self.EnableDebug: try: - axis3D = project.get("debug_axis3D", []) for variable in project.get("debug_vars", []): - self.DebugVariablePanel.InsertValue(variable, force=True, axis3D=variable in axis3D) + self.DebugVariablePanel.InsertValue(variable, force=True) except: self.DebugVariablePanel.ResetGrid()