Add missing space after extruder name (#12547)

This commit is contained in:
Alexandre Folle de Menezes
2026-03-03 17:25:33 -03:00
committed by GitHub
parent 90646276f8
commit 17e534cac4
23 changed files with 24 additions and 24 deletions

View File

@@ -1383,7 +1383,7 @@ bool CalibUtils::check_printable_status_before_cali(const MachineObject *obj, co
if (is_approx(double(cali_info.nozzle_diameter), 0.2) && !obj->is_series_x()) {
error_message = wxString::Format(_L("The nozzle diameter of %sextruder is 0.2mm which does not support automatic Flow Dynamics calibration."), name);
error_message = wxString::Format(_L("The nozzle diameter of %s extruder is 0.2mm which does not support automatic Flow Dynamics calibration."), name);
return false;
}
@@ -1443,7 +1443,7 @@ bool CalibUtils::check_printable_status_before_cali(const MachineObject *obj, co
if (is_approx(double(cali_info.nozzle_diameter), 0.2) && !obj->is_series_x()) {
error_message = wxString::Format(_L("The nozzle diameter of %sextruder is 0.2mm which does not support automatic Flow Dynamics calibration."), name);
error_message = wxString::Format(_L("The nozzle diameter of %s extruder is 0.2mm which does not support automatic Flow Dynamics calibration."), name);
return false;
}