Set build language for Open Document files (#1077)

This commit is contained in:
Veronica Berglyd Olsen
2022-06-05 22:47:21 +02:00
committed by GitHub
+3 -1
View File
@@ -659,6 +659,7 @@ class GuiBuildNovel(QDialog):
fmtUnnumbered = self.fmtUnnumbered.text() fmtUnnumbered = self.fmtUnnumbered.text()
fmtScene = self.fmtScene.text() fmtScene = self.fmtScene.text()
fmtSection = self.fmtSection.text() fmtSection = self.fmtSection.text()
buildLang = self.buildLang.currentData()
hideScene = self.hideScene.isChecked() hideScene = self.hideScene.isChecked()
hideSection = self.hideSection.isChecked() hideSection = self.hideSection.isChecked()
textFont = self.textFont.text() textFont = self.textFont.text()
@@ -676,7 +677,7 @@ class GuiBuildNovel(QDialog):
replaceUCode = self.replaceUCode.isChecked() replaceUCode = self.replaceUCode.isChecked()
# The language lookup dict is reloaded if needed # The language lookup dict is reloaded if needed
self.theProject.setProjectLang(self.buildLang.currentData()) self.theProject.setProjectLang(buildLang)
# Get font information # Get font information
fontInfo = QFontInfo(QFont(textFont, textSize)) fontInfo = QFontInfo(QFont(textFont, textSize))
@@ -706,6 +707,7 @@ class GuiBuildNovel(QDialog):
if isOdt: if isOdt:
bldObj.setColourHeaders(not noStyling) bldObj.setColourHeaders(not noStyling)
bldObj.setLanguage(buildLang)
bldObj.initDocument() bldObj.initDocument()
# Make sure the project and document is up to date # Make sure the project and document is up to date