Change to 0 bits as the default setting for Draco export precision.

This commit is contained in:
Maeyanie 2026-02-02 12:19:10 -05:00
parent ddc51f4d88
commit da42f69b59
2 changed files with 3 additions and 3 deletions

View file

@ -5,8 +5,8 @@ namespace Slic3r {
#define DRC_BITS_MIN 0
#define DRC_BITS_MAX 30
#define DRC_BITS_DEFAULT 16
#define DRC_BITS_DEFAULT_STR "16"
#define DRC_BITS_DEFAULT 0
#define DRC_BITS_DEFAULT_STR "0"
class TriangleMesh;
class ModelObject;

View file

@ -1364,8 +1364,8 @@ void PreferencesDialog::create_items()
wxEmptyString,
_L("bits"),
_L("Reducing the bits reduces the file precision and size.\n"
"~16 bits may be recommended and within the tolerances of 3D printing.\n"
"0 disables quantization producing an effectively lossless but compressed file."),
"~16 bits may be recommended and within the tolerances of 3D printing.\n"
"drc_bits", DRC_BITS_MIN, DRC_BITS_MAX);
g_sizer->Add(item_draco_position_bits);