From: duplo Date: Tue, 25 Aug 2009 13:28:23 +0000 (+0000) Subject: Set as enabled the selected modules in the editing pages X-Git-Tag: 2.2.0~187 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=604e601d6be88e9773cdf9548bda8043d177267b;p=bertos.git Set as enabled the selected modules in the editing pages git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2781 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index b57801a0..44911e5c 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -80,6 +80,10 @@ def loadBertosProject(project_file): tag_dict[tag] = False project_info.setInfo("ALL_CPU_TAGS", tag_dict) loadModuleData(project_info, True) + modules = project_info.info("MODULES") + for module, information in modules.items(): + information["enabled"] = module in project_data["ENABLED_MODULES"] + project_info.setInfo("MODULES", modules) return project_info def projectFileGenerator(project_info):