From d5c00a7bdaaea7af3f736c2e002d3c1ac8d1a9b6 Mon Sep 17 00:00:00 2001 From: 76Octane <132669596+76Octane@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:54:53 +0800 Subject: [PATCH] Update icons --- resources/icons/param_default.svg | 66 ++++++++++++++++++++++ resources/icons/param_monotonic lines.svg | 20 +++++++ resources/icons/param_monotonic.svg | 20 +++++++ resources/icons/param_rectilinear grid.svg | 32 +++++++++++ src/libslic3r/PrintConfig.cpp | 6 +- 5 files changed, 141 insertions(+), 3 deletions(-) create mode 100644 resources/icons/param_default.svg create mode 100644 resources/icons/param_monotonic lines.svg create mode 100644 resources/icons/param_monotonic.svg create mode 100644 resources/icons/param_rectilinear grid.svg diff --git a/resources/icons/param_default.svg b/resources/icons/param_default.svg new file mode 100644 index 0000000..a64e128 --- /dev/null +++ b/resources/icons/param_default.svg @@ -0,0 +1,66 @@ + + + + + Created by potrace 1.10, written by Peter Selinger 2001-2011 + + + + + + + diff --git a/resources/icons/param_monotonic lines.svg b/resources/icons/param_monotonic lines.svg new file mode 100644 index 0000000..d6045b6 --- /dev/null +++ b/resources/icons/param_monotonic lines.svg @@ -0,0 +1,20 @@ + + + + +Created by potrace 1.10, written by Peter Selinger 2001-2011 + + + + + diff --git a/resources/icons/param_monotonic.svg b/resources/icons/param_monotonic.svg new file mode 100644 index 0000000..9b27d6a --- /dev/null +++ b/resources/icons/param_monotonic.svg @@ -0,0 +1,20 @@ + + + + +Created by potrace 1.10, written by Peter Selinger 2001-2011 + + + + + diff --git a/resources/icons/param_rectilinear grid.svg b/resources/icons/param_rectilinear grid.svg new file mode 100644 index 0000000..004b725 --- /dev/null +++ b/resources/icons/param_rectilinear grid.svg @@ -0,0 +1,32 @@ + + + + +Created by potrace 1.10, written by Peter Selinger 2001-2011 + + + + + diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 69134ae..f44c0ba 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2893,9 +2893,9 @@ void PrintConfigDef::init_fff_params() "will create more stable supports, while snug support towers will save material and reduce " "object scarring."); def->set_enum({ - { "grid", L("Grid") }, - { "snug", L("Snug") }, - { "organic", L("Organic") } + { "grid", L("Grid ") }, + { "snug", L("Snug ") }, + { "organic", L("Organic ") } }); def->mode = comAdvanced; def->set_default_value(new ConfigOptionEnum(smsGrid));