From 497736affe875d41b809fdfe28931a6932829b32 Mon Sep 17 00:00:00 2001 From: supermerill Date: Wed, 15 Dec 2021 18:54:15 +0100 Subject: fix typo: 'layer height' instead of 'first layer height' supermerill/SuperSlicer#2060 --- src/libslic3r/Print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 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>{ {nozzle_diameter, "nozzle diameter"}, {max_layer_height, "max layer height"}, -- cgit v1.2.3