Commit d480e8e1 authored by sumpfralle's avatar sumpfralle

disabled load/save of preferences due to incompatibility with previous releases


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1204 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 27e40020
...@@ -648,8 +648,9 @@ class ProjectGui(object): ...@@ -648,8 +648,9 @@ class ProjectGui(object):
self.plugin_manager.import_plugins() self.plugin_manager.import_plugins()
# some more initialization # some more initialization
self.reset_preferences() self.reset_preferences()
self.load_preferences() # TODO: preferences are not loaded until the new format is stable
self.load_task_settings() #self.load_preferences()
#self.load_task_settings()
self.settings.register_event("notify-file-saved", self.settings.register_event("notify-file-saved",
self.add_to_recent_file_list) self.add_to_recent_file_list)
self.settings.register_event("notify-file-opened", self.settings.register_event("notify-file-opened",
...@@ -859,7 +860,9 @@ class ProjectGui(object): ...@@ -859,7 +860,9 @@ class ProjectGui(object):
self.quit() self.quit()
def quit(self): def quit(self):
self.save_preferences() # TODO: disabled until the format is stable
#self.save_preferences()
pass
def configure_drag_and_drop(self, obj): def configure_drag_and_drop(self, obj):
obj.connect("drag-data-received", self.handle_data_drop) obj.connect("drag-data-received", self.handle_data_drop)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment