Make speed tooltip consistent with others

This commit is contained in:
Rob Trame
2023-11-01 20:23:20 -06:00
parent 13fd71d90c
commit 16c0575181

View File

@@ -2495,11 +2495,11 @@ def = this->add("filament_loading_speed", coFloats);
(void)L("Maximum speed E");
def->category = L("Machine limits");
def->readonly = false;
def->tooltip = (boost::format("Maximum speed of %1% axis") % axis_upper).str();
(void)L("Maximum X speed");
(void)L("Maximum Y speed");
(void)L("Maximum Z speed");
(void)L("Maximum E speed");
def->tooltip = (boost::format("Maximum speed of the %1% axis") % axis_upper).str();
(void)L("Maximum speed of the X axis");
(void)L("Maximum speed of the Y axis");
(void)L("Maximum speed of the Z axis");
(void)L("Maximum speed of the E axis");
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comSimple;