(self, force=False, progress=None)
| 27 | self.thread = exportHtmlThread() |
| 28 | |
| 29 | def refreshFittingHtml(self, force=False, progress=None): |
| 30 | settings = HTMLExportSettings.getInstance() |
| 31 | |
| 32 | if force or settings.getEnabled(): |
| 33 | self.thread.stop() |
| 34 | self.thread = exportHtmlThread(progress) |
| 35 | self.thread.start() |
| 36 | |
| 37 | |
| 38 | class exportHtmlThread(threading.Thread): |
nothing calls this directly
no test coverage detected