From eb38405fe8a115c01095415bbe316cc66021ed78 Mon Sep 17 00:00:00 2001 From: supermerill Date: Mon, 16 Nov 2020 19:54:50 +0100 Subject: [PATCH] #671 fix speed unit --- 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 c9e2dfa7b..432889c28 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1161,7 +1161,7 @@ void PrintConfigDef::init_fff_params() def->tooltip = L("Maximum speed allowed for this filament. Limits the maximum " "speed of a print to the minimum of the print speed and the filament speed. " "Set to zero for no limit."); - def->sidetext = L("mm³/s"); + def->sidetext = L("mm/s"); def->min = 0; def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloats{ 0. });