mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Fixed typo
This commit is contained in:
parent
bbfe420769
commit
729bd529dc
2 changed files with 2 additions and 2 deletions
|
@ -1452,7 +1452,7 @@ namespace Slic3r {
|
||||||
|
|
||||||
if (m_check_version && (m_version > VERSION_3MF))
|
if (m_check_version && (m_version > VERSION_3MF))
|
||||||
{
|
{
|
||||||
std::string msg = _(L("The selected 3mf file has been saved with a newer version of " + std::string(SLIC3R_APP_NAME) + " and is not compatibile."));
|
std::string msg = _(L("The selected 3mf file has been saved with a newer version of " + std::string(SLIC3R_APP_NAME) + " and is not compatible."));
|
||||||
throw version_error(msg.c_str());
|
throw version_error(msg.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -827,7 +827,7 @@ bool extract_model_from_archive(mz_zip_archive& archive, const mz_zip_archive_fi
|
||||||
|
|
||||||
if (check_version && (ctx.m_version > VERSION_AMF))
|
if (check_version && (ctx.m_version > VERSION_AMF))
|
||||||
{
|
{
|
||||||
std::string msg = _(L("The selected amf file has been saved with a newer version of " + std::string(SLIC3R_APP_NAME) + " and is not compatibile."));
|
std::string msg = _(L("The selected amf file has been saved with a newer version of " + std::string(SLIC3R_APP_NAME) + " and is not compatible."));
|
||||||
throw std::runtime_error(msg.c_str());
|
throw std::runtime_error(msg.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue