From dc2165fee45c38871850421c031253149c6515a9 Mon Sep 17 00:00:00 2001 From: ZoZo Date: Fri, 26 Apr 2024 18:35:20 -0700 Subject: [PATCH] Screen Panel: Fixed emergency stop confirmation process (#1346) Emergency stop was always proceeding without waiting for confirmation, despite the fact that user configured KlipperScreen to confirm emergency stops. fixes #1344 --- ks_includes/screen_panel.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ks_includes/screen_panel.py b/ks_includes/screen_panel.py index 8cc4f503..c987984f 100644 --- a/ks_includes/screen_panel.py +++ b/ks_includes/screen_panel.py @@ -43,7 +43,6 @@ class ScreenPanel: "printer.emergency_stop") else: self._screen._ws.klippy.emergency_stop() - self._screen._ws.klippy.emergency_stop() def get_file_image(self, filename, width=None, height=None, small=False): if not self._files.has_thumbnail(filename):