mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 15:13:58 -06:00
Only enable Elphant foot compensation if printing directly
on the print bed (raft is disabled).
This commit is contained in:
parent
4c735192ef
commit
2399570950
1 changed files with 2 additions and 1 deletions
|
@ -1772,7 +1772,8 @@ end:
|
||||||
float delta = float(scale_(m_config.xy_size_compensation.value));
|
float delta = float(scale_(m_config.xy_size_compensation.value));
|
||||||
//FIXME only apply the compensation if no raft is enabled.
|
//FIXME only apply the compensation if no raft is enabled.
|
||||||
float elephant_foot_compensation = 0.f;
|
float elephant_foot_compensation = 0.f;
|
||||||
if (layer_id == 0)
|
if (layer_id == 0 && m_config.raft_layers == 0)
|
||||||
|
// Only enable Elephant foot compensation if printing directly on the print bed.
|
||||||
elephant_foot_compensation = float(scale_(m_config.elefant_foot_compensation.value));
|
elephant_foot_compensation = float(scale_(m_config.elefant_foot_compensation.value));
|
||||||
if (layer->m_regions.size() == 1) {
|
if (layer->m_regions.size() == 1) {
|
||||||
// Optimized version for a single region layer.
|
// Optimized version for a single region layer.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue