Added an empty category icon for Fuzzy Skin to prevent crashes in ObjectList

The icon should later be replaced by a proper one.
This commit is contained in:
Lukas Matena 2021-02-26 13:56:09 +01:00
parent 9a31580bde
commit b10d064a24
2 changed files with 9 additions and 0 deletions
src/slic3r/GUI

View file

@ -93,6 +93,7 @@ ObjectList::ObjectList(wxWindow* parent) :
CATEGORY_ICON[L("Layers and Perimeters")] = create_scaled_bitmap("layers");
CATEGORY_ICON[L("Infill")] = create_scaled_bitmap("infill");
CATEGORY_ICON[L("Ironing")] = create_scaled_bitmap("ironing");
CATEGORY_ICON[L("Fuzzy Skin")] = create_scaled_bitmap("fuzzy_skin");
CATEGORY_ICON[L("Support material")] = create_scaled_bitmap("support");
CATEGORY_ICON[L("Speed")] = create_scaled_bitmap("time");
CATEGORY_ICON[L("Extruders")] = create_scaled_bitmap("funnel");