mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-18 05:45:42 -07:00
FIX: the info cannot displayed in Chinese language
jira: STUDIO-12985 Change-Id: Ic2d52bc94129c2c568ebc4b3dc2b0a3fe5a65907 (cherry picked from commit 209c29400ca203e4ccd26863d2b78d5802275131)
This commit is contained in:
parent
fcbad94b91
commit
ba4cc19e6c
1 changed files with 1 additions and 1 deletions
|
|
@ -316,7 +316,7 @@ bool check_filaments_printable(const std::string &tag_vendor, const std::string
|
|||
if (filament_info.has_value() && !(filament_info->filament_printable >> extruder_idx & 1)) {
|
||||
wxString extruder_name = extruder_idx == 0 ? _L("left") : _L("right");
|
||||
ac = "prohibition";
|
||||
info = (wxString::Format(_L("%s is not supported by %s extruder."), tag_type, extruder_name)).ToUTF8().data();
|
||||
info = wxString::Format(_L("%s is not supported by %s extruder."), tag_type, extruder_name);
|
||||
in_blacklist = true;
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue