From 20f86fac4ebf156faee0369bdb895ca9979c21ce Mon Sep 17 00:00:00 2001 From: Arthur Date: Thu, 19 Oct 2023 09:48:33 +0800 Subject: [PATCH] ENH: max clone num increased to 1000 For some application like Lego bricks, 100 is far from enough. Jira: none Change-Id: I94a6f47e75545bf35f16e493eb4bb05236ea98fe (cherry picked from commit 2a4270adaaf7d14eb8b3d0397264df28b20a1ea2) --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 7983f3143..4a64b9a4b 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -12012,7 +12012,7 @@ void Plater::clone_selection() long res = wxGetNumberFromUser("", _L("Clone"), _L("Number of copies:"), - 1, 0, 100, this); + 1, 0, 1000, this); wxString msg; if (res == -1) { msg = _L("Invalid number");