Updated arc fitting pop up to clarify that this option should not be enabled for Klipper machines (#5352)

* Updated arc fitting pop up

* Merge branch 'main' into Arc-fitting-updated-pop-up-for-Klipper-machines
This commit is contained in:
Ioannis Giannakas 2024-05-18 15:38:42 +01:00 committed by GitHub
parent 178b889c68
commit c482a62123
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2453,7 +2453,11 @@ def = this->add("filament_loading_speed", coFloats);
def = this->add("enable_arc_fitting", coBool);
def->label = L("Arc fitting");
def->tooltip = L("Enable this to get a G-code file which has G2 and G3 moves. "
"And the fitting tolerance is same with resolution");
"The fitting tolerance is same as the resolution. \n\n"
"Note: For klipper machines, this option is recomended to be disabled. Klipper does not benefit from "
"arc commands as these are split again into line segments by the firmware. This results in a reduction "
"in surface quality as line segments are converted to arcs by the slicer and then back to line segments "
"by the firmware.");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(0));
// BBS