Fixed a typo

This commit is contained in:
Veronica K. B. Olsen
2020-05-23 21:24:12 +02:00
parent 4e9985cc54
commit a5e4f89d50
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -241,7 +241,7 @@ class ToHtml(Tokenizer):
return
def getStylesheet(self):
def getStyleSheet(self):
"""Generate a stylesheet appropriate for the current settings.
"""
theStyles = []
+1 -1
View File
@@ -351,7 +351,7 @@ class GuiBuildNovel(QDialog):
tEnd = time()
logger.debug("Built project in %.3f ms" % (1000*(tEnd-tStart)))
self.htmlStyle = makeHtml.getStylesheet()
self.htmlStyle = makeHtml.getStyleSheet()
# Load the preview document with the html data
self.docView.setStyleSheet(self.htmlStyle)