Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build ODT language and collapsing of view panel #1087

Merged
merged 2 commits into from
Jun 15, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Resolve issue #1073
  • Loading branch information
vkbo committed Jun 15, 2022
commit 7d7c2dba2642279d09981e76f35ccaf7d3b1edc3
2 changes: 2 additions & 0 deletions novelwriter/tools/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,7 @@ def _doBuild(self, bldObj, isPreview=False, doConvert=True):
fmtUnnumbered = self.fmtUnnumbered.text()
fmtScene = self.fmtScene.text()
fmtSection = self.fmtSection.text()
buildLang = self.buildLang.currentData()
hideScene = self.hideScene.isChecked()
hideSection = self.hideSection.isChecked()
textFont = self.textFont.text()
Expand Down Expand Up @@ -706,6 +707,7 @@ def _doBuild(self, bldObj, isPreview=False, doConvert=True):

if isOdt:
bldObj.setColourHeaders(not noStyling)
bldObj.setLanguage(buildLang)
bldObj.initDocument()

# Make sure the project and document is up to date
Expand Down