From 353c9c2ea946e7d9276381c7fecde5ad09073c29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0ach?= Date: Thu, 9 Nov 2023 12:27:11 +0100 Subject: [PATCH] Bugfix: User must not enter slope angle for ramping z-hop over 90 degrees. --- src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index b780de2f3c..c59ba46b0b 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2339,7 +2339,7 @@ void PrintConfigDef::init_fff_params() "This number indicates the slope of the travel as mm raised per mm traveled in percent."); def->sidetext = L("°"); def->min = 0; - def->max_literal = 90; + def->max = 90; def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloats{0.0});