Make the editor dictionary internal

This commit is contained in:
Veronica K. B. Olsen
2021-05-16 00:19:40 +02:00
parent ba5e5f4bb5
commit 24ab6f2d3b
5 changed files with 32 additions and 20 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ class GuiProjectEditMain(QWidget):
self.spellLang = QComboBox(self)
self.spellLang.setMaximumWidth(xW)
theDict = self.theParent.docEditor.theDict
theDict = self.theParent.docEditor.currentDictionary()
self.spellLang.addItem(self.tr("Default"), "None")
if theDict is not None:
for spTag, spProv in theDict.listDictionaries():