From da42f69b59a6ee884e01fb3a6b811dbb8d30b250 Mon Sep 17 00:00:00 2001 From: Maeyanie Date: Mon, 2 Feb 2026 12:19:10 -0500 Subject: [PATCH] Change to 0 bits as the default setting for Draco export precision. --- src/libslic3r/Format/DRC.hpp | 4 ++-- src/slic3r/GUI/Preferences.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/Format/DRC.hpp b/src/libslic3r/Format/DRC.hpp index 7286dd9bf7..334157a70c 100644 --- a/src/libslic3r/Format/DRC.hpp +++ b/src/libslic3r/Format/DRC.hpp @@ -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; diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index 12777df0e1..61be19cabc 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -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);