We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1e3681 commit fd5c2fcCopy full SHA for fd5c2fc
tools/config_editor/compile.py
@@ -87,10 +87,11 @@ def compile_libs(self) -> None:
87
def on_button_pressed(self, event: Button.Pressed) -> None:
88
# Event handler called when a button is pressed
89
if self.child_process:
90
- # Terminate the child process if it is running
+ # Kill the child process if it is running
91
print("Terminating child process")
92
- self.child_process.terminate()
+ self.child_process.kill()
93
self.child_process.wait()
94
+ self.child_process = None
95
self.dismiss()
96
97
@on(ScreenResume)
0 commit comments