mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
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:
parent
178b889c68
commit
c482a62123
1 changed files with 5 additions and 1 deletions
|
@ -2453,7 +2453,11 @@ def = this->add("filament_loading_speed", coFloats);
|
||||||
def = this->add("enable_arc_fitting", coBool);
|
def = this->add("enable_arc_fitting", coBool);
|
||||||
def->label = L("Arc fitting");
|
def->label = L("Arc fitting");
|
||||||
def->tooltip = L("Enable this to get a G-code file which has G2 and G3 moves. "
|
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->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionBool(0));
|
def->set_default_value(new ConfigOptionBool(0));
|
||||||
// BBS
|
// BBS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue