diff --git a/src/slic3r/GUI/PlateSettingsDialog.cpp b/src/slic3r/GUI/PlateSettingsDialog.cpp index aad4aa414..a6086874f 100644 --- a/src/slic3r/GUI/PlateSettingsDialog.cpp +++ b/src/slic3r/GUI/PlateSettingsDialog.cpp @@ -131,7 +131,7 @@ wxString PlateSettingsDialog::to_bed_type_name(BedType bed_type) { case btDefault: return _L("Same as Global Bed Type"); case btPC: - return _L("Cool Plate / PLA Plate"); + return _L("Cool Plate") + " / " + _L("PLA Plate"); case btEP: return _L("Engineering Plate"); case btPEI: diff --git a/src/slic3r/GUI/SelectMachine.cpp b/src/slic3r/GUI/SelectMachine.cpp index 0064b497e..3e9dc87ba 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -900,7 +900,9 @@ void SelectMachinePopup::OnLeftUp(wxMouseEvent &event) static wxString MACHINE_BED_TYPE_STRING[BED_TYPE_COUNT] = { //_L("Auto"), - _L("Bambu Cool Plate / PLA Plate"), _L("Bamabu Engineering Plate"), _L("Bamabu High Temperature Plate")}; + _L("Bambu Cool Plate") + " / " + _L("PLA Plate"), + _L("Bamabu Engineering Plate"), + _L("Bamabu High Temperature Plate")}; static std::string MachineBedTypeString[BED_TYPE_COUNT] = { //"auto", diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 0276ef731..9609d7e97 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2611,12 +2611,12 @@ void TabFilament::build() line.append_option(optgroup->get_option("nozzle_temperature")); optgroup->append_line(line); - line = { L("Cool plate"), L("Bed temperature when cool plate is installed. Value 0 means the filament does not support to print on the Cool Plate") }; + line = { L("Cool Plate / PLA Plate"), L("Bed temperature when cool plate is installed. Value 0 means the filament does not support to print on the Cool Plate") }; line.append_option(optgroup->get_option("cool_plate_temp_initial_layer")); line.append_option(optgroup->get_option("cool_plate_temp")); optgroup->append_line(line); - line = { L("Engineering plate"), L("Bed temperature when engineering plate is installed. Value 0 means the filament does not support to print on the Engineering Plate") }; + line = { L("Engineering Plate"), L("Bed temperature when engineering plate is installed. Value 0 means the filament does not support to print on the Engineering Plate") }; line.append_option(optgroup->get_option("eng_plate_temp_initial_layer")); line.append_option(optgroup->get_option("eng_plate_temp")); optgroup->append_line(line);