mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 13:17:54 -06:00
FIX: wrong text encoding [STUDIO-3753]
Change-Id: Ie05367ab294c87426dc4ce534ffb28a183a447bf
This commit is contained in:
parent
5328d346c7
commit
8ae8b6b878
3 changed files with 10 additions and 9 deletions
|
@ -1046,7 +1046,7 @@ bool CalibrationPresetPage::is_filaments_compatiable(const std::vector<Preset*>
|
|||
}
|
||||
|
||||
if (!Print::check_multi_filaments_compatibility(filament_types)) {
|
||||
error_tips = L("Can not print multiple filaments which have large difference of temperature together. Otherwise, the extruder and nozzle may be blocked or damaged during printing");
|
||||
error_tips = _u8L("Can not print multiple filaments which have large difference of temperature together. Otherwise, the extruder and nozzle may be blocked or damaged during printing");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -1164,11 +1164,12 @@ void CalibrationPresetPage::update_show_status()
|
|||
}
|
||||
}
|
||||
|
||||
if (is_blocking_printing()) {
|
||||
show_status(CaliPresetPageStatus::CaliPresetStatusUnsupportedPrinter);
|
||||
return;
|
||||
}
|
||||
else if (obj_->is_connecting() || !obj_->is_connected()) {
|
||||
//if (is_blocking_printing()) {
|
||||
// show_status(CaliPresetPageStatus::CaliPresetStatusUnsupportedPrinter);
|
||||
// return;
|
||||
//}
|
||||
//else
|
||||
if (obj_->is_connecting() || !obj_->is_connected()) {
|
||||
show_status(CaliPresetPageStatus::CaliPresetStatusInConnecting);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue