From 9632e6fa6a675929db5e64bf24569815983eb587 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Wed, 11 Aug 2021 12:11:19 +0200 Subject: [PATCH] New icons for mmu painting, fuzzy skin and object info items --- resources/icons/fuzzy_skin.svg | 15 ++-- resources/icons/info.png | Bin 308 -> 0 bytes resources/icons/info.svg | 86 ++++------------------ resources/icons/mmu_segmentation.svg | 28 +++++++ src/slic3r/GUI/Gizmos/GLGizmosManager.cpp | 2 +- 5 files changed, 55 insertions(+), 76 deletions(-) delete mode 100644 resources/icons/info.png create mode 100644 resources/icons/mmu_segmentation.svg diff --git a/resources/icons/fuzzy_skin.svg b/resources/icons/fuzzy_skin.svg index b8ba0a651..f1ddc6b33 100644 --- a/resources/icons/fuzzy_skin.svg +++ b/resources/icons/fuzzy_skin.svg @@ -1,8 +1,13 @@ - + - - - + width="16px" height="16px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"> + + diff --git a/resources/icons/info.png b/resources/icons/info.png deleted file mode 100644 index 9eeee9b3cdbac7fd819d3f4c3ee85414c5f1ed50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 308 zcmV-40n7f0P)6|`_Rtm|7y^1~Ew=AW5=n0W(fT;mbLc<=CvuP!m`yl+rpgAzqp8NMnw zN!+2v9C;$1N30I+zs_}ZYEa-QtZ4bm;QmokMfEnO_zs(PV)Mv3c0VL!_bF(`IW#IJ zSafGP0SinrjIiz@J%^>R#;Ci-vyowo@ddeKY%{FzAieuO -image/svg+xml - - - - - - - - - + + + + + diff --git a/resources/icons/mmu_segmentation.svg b/resources/icons/mmu_segmentation.svg new file mode 100644 index 000000000..715e6ec28 --- /dev/null +++ b/resources/icons/mmu_segmentation.svg @@ -0,0 +1,28 @@ + + + + + + diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp index eda95a2a5..7461b0922 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp @@ -103,7 +103,7 @@ bool GLGizmosManager::init() m_gizmos.emplace_back(new GLGizmoSlaSupports(m_parent, "sla_supports.svg", 6)); m_gizmos.emplace_back(new GLGizmoFdmSupports(m_parent, "fdm_supports.svg", 7)); m_gizmos.emplace_back(new GLGizmoSeam(m_parent, "seam.svg", 8)); - m_gizmos.emplace_back(new GLGizmoMmuSegmentation(m_parent, "fdm_supports.svg", 9)); + m_gizmos.emplace_back(new GLGizmoMmuSegmentation(m_parent, "mmu_segmentation.svg", 9)); m_gizmos.emplace_back(new GLGizmoSimplify(m_parent, "cut.svg", 10)); m_common_gizmos_data.reset(new CommonGizmosDataPool(&m_parent));