mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 23:46:24 -06:00
FIX: add a warning for XY size compensation with multi-color
Change-Id: I11000600f49fc1b0a8869d09a69fb37167ded22a
This commit is contained in:
parent
6365c95db3
commit
3e3728f0a7
1 changed files with 4 additions and 4 deletions
|
@ -967,10 +967,10 @@ void PrintObject::slice_volumes()
|
||||||
// If XY Size compensation is also enabled, notify the user that XY Size compensation
|
// If XY Size compensation is also enabled, notify the user that XY Size compensation
|
||||||
// would not be used because the object is multi-material painted.
|
// would not be used because the object is multi-material painted.
|
||||||
if (m_config.xy_hole_compensation.value != 0.f || m_config.xy_contour_compensation.value != 0.f) {
|
if (m_config.xy_hole_compensation.value != 0.f || m_config.xy_contour_compensation.value != 0.f) {
|
||||||
//this->active_step_add_warning(
|
this->active_step_add_warning(
|
||||||
// PrintStateBase::WarningLevel::CRITICAL,
|
PrintStateBase::WarningLevel::CRITICAL,
|
||||||
// L("An object has enabled XY Size compensation which will not be used because it is also multi-material painted.\nXY Size "
|
L("An object has enabled XY Size compensation which will not be used because it is also multi-material painted.\nXY Size "
|
||||||
// "compensation cannot be combined with multi-material painting."));
|
"compensation cannot be combined with multi-material painting."));
|
||||||
BOOST_LOG_TRIVIAL(info) << "xy compensation will not work for object " << this->model_object()->name << " for multi filament.";
|
BOOST_LOG_TRIVIAL(info) << "xy compensation will not work for object " << this->model_object()->name << " for multi filament.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue