From 95d43cb1aaf2f0dabcf4449c885039d7f9cb62ef Mon Sep 17 00:00:00 2001 From: milk Date: Tue, 27 May 2025 14:38:28 +0800 Subject: [PATCH] ENH:The warning will not be displayed while the file is still being sent jira:[STUDIO-12371] Change-Id: I429a8a5af080dfd869b3a72d050e3019b9560665 --- src/slic3r/GUI/SendToPrinter.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/slic3r/GUI/SendToPrinter.cpp b/src/slic3r/GUI/SendToPrinter.cpp index ea23c792f..29d8360ff 100644 --- a/src/slic3r/GUI/SendToPrinter.cpp +++ b/src/slic3r/GUI/SendToPrinter.cpp @@ -1258,8 +1258,6 @@ void SendToPrinterDialog::update_show_status() } - - /* check cloud machine connections */ if (!obj_->is_lan_mode_printer()) { if (!agent->is_server_connected()) { @@ -1269,7 +1267,7 @@ void SendToPrinterDialog::update_show_status() } } - if (!obj_->is_info_ready() || !obj_->is_online() || !obj_->is_connected()) { + if (!obj_->is_info_ready()) { if (is_timeout()) { show_status(PrintDialogStatus::PrintStatusReadingTimeout); return;