Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/src/libnest2d/libnest2d/selections/firstfit.hpp')
-rw-r--r--xs/src/libnest2d/libnest2d/selections/firstfit.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libnest2d/libnest2d/selections/firstfit.hpp b/xs/src/libnest2d/libnest2d/selections/firstfit.hpp
index f34961f80..665b9da9f 100644
--- a/xs/src/libnest2d/libnest2d/selections/firstfit.hpp
+++ b/xs/src/libnest2d/libnest2d/selections/firstfit.hpp
@@ -59,7 +59,7 @@ public:
// then it should be removed from the list
{ auto it = store_.begin();
while (it != store_.end()) {
- Placer p(bin);
+ Placer p(bin); p.configure(pconfig);
if(!p.pack(*it)) {
it = store_.erase(it);
} else it++;