From 9f31a1ff7bc95d7f71a1f68553f59472f3a0a679 Mon Sep 17 00:00:00 2001 From: "lane.wei" Date: Tue, 10 Oct 2023 08:06:06 +0800 Subject: [PATCH] ENH: GUI: refine the text spacing for some warning JIRA: no jira Change-Id: I6d6a6e1e103a3c67ed6c93847877753bbe7c4691 --- src/slic3r/GUI/Plater.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 3af6020d4d..9bbd268b26 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -2847,7 +2847,7 @@ wxColour Plater::get_next_color_for_filament() wxString Plater::get_slice_warning_string(GCodeProcessorResult::SliceWarning& warning) { if (warning.msg == BED_TEMP_TOO_HIGH_THAN_FILAMENT) { - return _L("The current hot bed temperature is relatively high.The nozzle may be clogged when printing this filament in a closed enclosure.Please open the front door and/or remove the upper glass."); + return _L("The current hot bed temperature is relatively high. The nozzle may be clogged when printing this filament in a closed enclosure. Please open the front door and/or remove the upper glass."); } else if (warning.msg == NOZZLE_HRC_CHECKER) { return _L("The nozzle hardness required by the filament is higher than the default nozzle hardness of the printer. Please replace the hardened nozzle or filament, otherwise, the nozzle will be attrited or damaged."); } else if (warning.msg == NOT_SUPPORT_TRADITIONAL_TIMELAPSE) { @@ -8128,7 +8128,7 @@ void Plater::import_model_id(wxString download_info) body, http_status, error); - + if (retry_count == max_retries) { msg = _L("Importing to Bambu Studio failed. Please download the file and manually import it."); cont = false;