Extended build tool test

This commit is contained in:
Veronica K. B. Olsen
2020-09-26 13:49:08 +02:00
parent be9253e388
commit 3c21a39cee
4 changed files with 269 additions and 5 deletions
+2 -2
View File
@@ -468,7 +468,7 @@ class GuiBuildNovel(QDialog):
self.buildProgress.setMaximum(len(self.theProject.projTree))
self.buildProgress.setValue(0)
tStart = time()
tStart = int(time())
self.htmlText = []
self.htmlStyle = []
@@ -511,7 +511,7 @@ class GuiBuildNovel(QDialog):
# Update progress bar, also for skipped items
self.buildProgress.setValue(nItt+1)
tEnd = time()
tEnd = int(time())
logger.debug("Built project in %.3f ms" % (1000*(tEnd-tStart)))
self.htmlStyle = makeHtml.getStyleSheet()
self.buildTime = tEnd