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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2021-12-15 20:54:15 +0300
committersupermerill <merill@free.fr>2021-12-15 21:50:56 +0300
commit497736affe875d41b809fdfe28931a6932829b32 (patch)
tree5be9e7a93b8d3fa6ef6db7f84799ed412e7b16a8 /src
parentb1e044855e1f38a5b177ce9b58d3d09cef89c3f1 (diff)
fix typo: 'layer height' instead of 'first layer height'
supermerill/SuperSlicer#2060
Diffstat (limited to 'src')
-rw-r--r--src/libslic3r/Print.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp
index 904ebe45c..9043d0cde 100644
--- a/src/libslic3r/Print.cpp
+++ b/src/libslic3r/Print.cpp
@@ -1633,7 +1633,7 @@ std::pair<PrintBase::PrintValidationError, std::string> Print::validate() const
//check not-first layer
if (object->region_volumes[region_id].front().first.second > layer_height) {
if (layer_height + EPSILON < min_layer_height)
- return { PrintBase::PrintValidationError::pveWrongSettings, (boost::format(L("First layer height can't be higher than %s")) % "min layer height").str() };
+ return { PrintBase::PrintValidationError::pveWrongSettings, (boost::format(L("Layer height can't be higher than %s")) % "min layer height").str() };
for (auto tuple : std::vector<std::pair<double, const char*>>{
{nozzle_diameter, "nozzle diameter"},
{max_layer_height, "max layer height"},