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
This commit is contained in:
Sabriel-Koh
2026-03-09 14:39:54 +08:00
committed by GitHub
parent eb6da907a9
commit 48b85b37d4

View File

@@ -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});