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:
Ghostkeeper 2016-09-27 16:18:05 +02:00
parent 433f7ce53f
commit b1c49d0a91
No known key found for this signature in database
GPG key ID: 701948C5954A7385

View file

@ -519,7 +519,7 @@ class BuildVolume(SceneNode):
move_from_wall_radius = 0 #Moves that start from outer wall. move_from_wall_radius = 0 #Moves that start from outer wall.
if self._getSettingProperty("infill_wipe_dist", "value"): 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"): if self._getSettingProperty("travel_avoid_distance", "value"):
move_from_wall_radius = max(move_from_wall_radius, self._getSettingProperty("travel_avoid_distance", "value")) move_from_wall_radius = max(move_from_wall_radius, self._getSettingProperty("travel_avoid_distance", "value"))