1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-12 08:14:26 +00:00

Fix arrangement with items larger or equal to bed dimesions.

fixes #2897 
fixes #1186
This commit is contained in:
tamasmeszaros
2020-03-16 14:37:54 +01:00
parent 6bace46be1
commit 5ed7d0aa29
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -577,7 +577,7 @@ void _arrange(
std::function<bool()> stopfn)
{
// Integer ceiling the min distance from the bed perimeters
coord_t md = minobjd - 2 * scaled(0.1 + EPSILON);
coord_t md = minobjd;
md = (md % 2) ? md / 2 + 1 : md / 2;
auto corrected_bin = bin;