diff --git a/Core/Interface/CentralPane.py b/Core/Interface/CentralPane.py index 24906df..18bba52 100644 --- a/Core/Interface/CentralPane.py +++ b/Core/Interface/CentralPane.py @@ -1164,7 +1164,7 @@ class CanvasScene(QtWidgets.QGraphicsScene): self.addEntityLinkCreatorHelper(self.nodesDict[entity]) progress.setValue(steps) - self.parent().mainWindow.MESSAGEHANDLER.info('Loaded canvas ' + self.getSelfName()) + self.parent().mainWindow.MESSAGEHANDLER.info('Loaded canvas ' + canvasName) def updatePositionInDB(self, uid, x, y) -> None: """ diff --git a/Core/Interface/DockBarThree.py b/Core/Interface/DockBarThree.py index b947912..48ccdb1 100644 --- a/Core/Interface/DockBarThree.py +++ b/Core/Interface/DockBarThree.py @@ -51,6 +51,9 @@ class DockBarThree(QtWidgets.QDockWidget): self.chatBox = ChatBox(self, self.parent()) self.timeWidget = TimeWidget(self, self.parent()) self.logViewer = QtWidgets.QPlainTextEdit() + + # Because we're not going to stop the thread before closing, an error will be thrown by Qt. + # That error can be safely ignored. logViewerUpdateThread = LoggingUpdateThread(mainWindow.MESSAGEHANDLER) logViewerUpdateThread.loggingSignal.connect(self.updateLogs) logViewerUpdateThread.start()