mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 23:17:32 -06:00
Infill Wipe Distance belongs to moves from the wall
Was a copy-paste mistake, I think. Contributes to issue CURA-2407.
This commit is contained in:
parent
433f7ce53f
commit
b1c49d0a91
1 changed files with 1 additions and 1 deletions
|
@ -519,7 +519,7 @@ class BuildVolume(SceneNode):
|
|||
|
||||
move_from_wall_radius = 0 #Moves that start from outer wall.
|
||||
if self._getSettingProperty("infill_wipe_dist", "value"):
|
||||
wall_expansion_radius = max(move_from_wall_radius, self._getSettingProperty("infill_wipe_dist", "value"))
|
||||
move_from_wall_radius = max(move_from_wall_radius, self._getSettingProperty("infill_wipe_dist", "value"))
|
||||
if self._getSettingProperty("travel_avoid_distance", "value"):
|
||||
move_from_wall_radius = max(move_from_wall_radius, self._getSettingProperty("travel_avoid_distance", "value"))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue