fix: script process termination

This commit is contained in:
RedDeadDepresso
2024-09-24 17:59:01 +01:00
parent 0751a5a2de
commit 0e32b48abe

View File

@@ -55,7 +55,7 @@ class ScriptManager(QObject):
def stop(self):
if self._process is not None:
self._process.terminate()
self._process.kill()
def processFinished(self):
"""Slot called when the process finishes."""