From b1c49d0a917a7d4d90f0edab49f3e41bef52bfbb Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 27 Sep 2016 16:18:05 +0200 Subject: [PATCH] Infill Wipe Distance belongs to moves from the wall Was a copy-paste mistake, I think. Contributes to issue CURA-2407. --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index d8b76894d7..f9710cc5c4 100644 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -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"))