139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
try:
dialog = DictOptions(self.ctx)
dialog.run()
except:
traceback.print_exc()
def _loadOptions (self):
print("load options")
try:
xChild = self.xSettingNode.getByName("o_fr")
self.xGraphspell.State = xChild.getPropertyValue("graphspell")
self.xGraphspellSugg.State = xChild.getPropertyValue("graphspellsugg")
#self.xExtendedDic.State = xChild.getPropertyValue("extended_dic")
self.xPersonalDic.State = xChild.getPropertyValue("personal_dic")
except:
|
<
|
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
try:
dialog = DictOptions(self.ctx)
dialog.run()
except:
traceback.print_exc()
def _loadOptions (self):
try:
xChild = self.xSettingNode.getByName("o_fr")
self.xGraphspell.State = xChild.getPropertyValue("graphspell")
self.xGraphspellSugg.State = xChild.getPropertyValue("graphspellsugg")
#self.xExtendedDic.State = xChild.getPropertyValue("extended_dic")
self.xPersonalDic.State = xChild.getPropertyValue("personal_dic")
except:
|