From 48b85b37d46a3310acd2051f25e0cd4031be4a59 Mon Sep 17 00:00:00 2001 From: Sabriel-Koh <52443698+Sabriel-Koh@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:39:54 +0800 Subject: [PATCH] Move adaptive flowrate to developer mode and clarified tooltip (#12688) * Set Adaptive Volumetric Speed as a developer mode setting, and further clarified in the tooltip * Fixed typo --- src/libslic3r/PrintConfig.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index aabe9a9e9d..391e82b53c 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2460,8 +2460,9 @@ void PrintConfigDef::init_fff_params() def->label = L("Adaptive volumetric speed"); def->tooltip = L("When enabled, the extrusion flow is limited by the smaller of " "the fitted value (calculated from line width and layer height) and the user-defined maximum flow." - " When disabled, only the user-defined maximum flow is applied."); - def->mode = comAdvanced; + " When disabled, only the user-defined maximum flow is applied.\n\n" + "Note: Experimental and incomplete feature imported from BBS. Functional for some profiles that already have the variable saved."); + def->mode = comDevelop; def->nullable = true; def->set_default_value(new ConfigOptionBoolsNullable {false});