Add a default header to Open Document files

This commit is contained in:
Veronica K. B. Olsen
2021-02-06 23:22:23 +01:00
parent 5e40bd5deb
commit 3db9987966
2 changed files with 113 additions and 4 deletions
+2 -3
View File
@@ -365,10 +365,9 @@ class GuiBuildNovel(QDialog):
# Build Button
# ============
self.buildProgress = QProgressBar()
self.buildProgress = QProgressBar()
self.buildNovel = QPushButton("Build Project")
self.buildNovel = QPushButton("Build Preview")
self.buildNovel.clicked.connect(self._buildPreview)
# Action Buttons
@@ -1155,7 +1154,7 @@ class GuiBuildNovelDocView(QTextBrowser):
self.qDocument.setDocumentMargin(self.mainConf.getTextMargin())
self.setPlaceholderText(
"This area will show the content of the document to be "
"exported or printed. Press the \"Build Project\" button "
"exported or printed. Press the \"Build Preview\" button "
"to generate content."
)