From 61c43fb765d74997922789d8bd2c3558f212cd9e Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 28 Oct 2021 13:53:52 +0200 Subject: [PATCH] Only show "can't find location message" when it couldn't find location Bit of a silly mistake, but easy enough to fix! CURA-8649 --- cura/Arranging/Nest2DArrange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py index ebe96202f2..c29a0648df 100644 --- a/cura/Arranging/Nest2DArrange.py +++ b/cura/Arranging/Nest2DArrange.py @@ -159,4 +159,4 @@ def arrange(nodes_to_arrange: List["SceneNode"], grouped_operation, not_fit_count = createGroupOperationForArrange(nodes_to_arrange, build_volume, fixed_nodes, factor, add_new_nodes_in_scene) grouped_operation.push() - return not_fit_count != 0 + return not_fit_count == 0