diff --git a/resources/icons/shape_ungroup_o.png b/resources/icons/shape_ungroup_o.png new file mode 100644 index 000000000..97746d32c Binary files /dev/null and b/resources/icons/shape_ungroup_o.png differ diff --git a/resources/icons/shape_ungroup_p.png b/resources/icons/shape_ungroup_p.png new file mode 100644 index 000000000..81c0198ff Binary files /dev/null and b/resources/icons/shape_ungroup_p.png differ diff --git a/resources/icons/support_blocker_.png b/resources/icons/support_blocker_.png index 0873c5e6e..fc658e4f6 100644 Binary files a/resources/icons/support_blocker_.png and b/resources/icons/support_blocker_.png differ diff --git a/resources/icons/support_enforcer_.png b/resources/icons/support_enforcer_.png index 265cebcb9..ac34b6cb0 100644 Binary files a/resources/icons/support_enforcer_.png and b/resources/icons/support_enforcer_.png differ diff --git a/resources/icons/toolbar.png b/resources/icons/toolbar.png index 79246bcf9..660be1a5d 100644 Binary files a/resources/icons/toolbar.png and b/resources/icons/toolbar.png differ diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 5f7cd475f..0c13bdd47 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -4554,7 +4554,7 @@ bool GLCanvas3D::_init_toolbar() item.name = "splitvolumes"; item.tooltip = GUI::L_str("Split to parts"); - item.sprite_id = 6; + item.sprite_id = 11; item.is_toggable = false; item.action_event = EVT_GLTOOLBAR_SPLIT_VOLUMES; if (!m_toolbar.add_item(item)) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 5927c270d..360288700 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -1838,9 +1838,9 @@ bool Plater::priv::init_object_menu() return false; wxMenuItem* item_split_objects = append_menu_item(split_menu, wxID_ANY, _(L("To objects")), _(L("Split the selected object into individual objects")), - [this](wxCommandEvent&) { split_object(); }, "shape_ungroup.png", &object_menu); + [this](wxCommandEvent&) { split_object(); }, "shape_ungroup_o.png", &object_menu); wxMenuItem* item_split_volumes = append_menu_item(split_menu, wxID_ANY, _(L("To parts")), _(L("Split the selected object into individual sub-parts")), - [this](wxCommandEvent&) { split_volume(); }, "shape_ungroup.png", &object_menu); + [this](wxCommandEvent&) { split_volume(); }, "shape_ungroup_p.png", &object_menu); wxMenuItem* item_split = append_submenu(&object_menu, split_menu, wxID_ANY, _(L("Split")), _(L("Split the selected object")), "shape_ungroup.png");