From 4a1c53e76e54879f08b0b4b6d87ce7479d1d2e77 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Thu, 16 Jul 2026 18:18:51 +0800 Subject: [PATCH] Stop the pending storage check when jumping to the timelapse page --- src/slic3r/GUI/SelectMachine.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/SelectMachine.cpp b/src/slic3r/GUI/SelectMachine.cpp index 965753ec21..02b8c4da4a 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -3129,6 +3129,8 @@ void SelectMachineDialog::show_timelapse_storage_dialog(MachineObject* obj) void SelectMachineDialog::navigate_to_timelapse_page() { + if (m_timelapse_check_timer) m_timelapse_check_timer->Stop(); + // EndModal closes the dialog; schedule navigation after the dialog is fully destroyed wxGetApp().CallAfter([]() { auto* main_frame = wxGetApp().mainframe;