From ced1096294699ece09f50b58f3a74de488fafb5f Mon Sep 17 00:00:00 2001 From: Maxime Connolly Date: Tue, 20 May 2025 07:30:46 -0300 Subject: [PATCH] Fix typo operating to operation --- src/slic3r/GUI/MediaPlayCtrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/MediaPlayCtrl.cpp b/src/slic3r/GUI/MediaPlayCtrl.cpp index 61e3c43db..9e19ecf0e 100644 --- a/src/slic3r/GUI/MediaPlayCtrl.cpp +++ b/src/slic3r/GUI/MediaPlayCtrl.cpp @@ -187,7 +187,7 @@ void MediaPlayCtrl::SetMachineObject(MachineObject* obj) auto close = wxGetApp().app_config->get("liveview", "auto_stop_liveview") == "true"; if (close || obj == nullptr || !obj->is_in_printing()) { m_next_retry = wxDateTime(); - Stop(_L("Temporarily closed because there is no operating for a long time.")); + Stop(_L("Temporarily closed because there is no operation for a while.")); return; } }