Follow-up 7eebd56b5f - fixed a typo

+ added add_negative.svg for dark mode
This commit is contained in:
YuSanka 2021-06-02 14:36:49 +02:00
parent 7eebd56b5f
commit 4b5e568f14
4 changed files with 28 additions and 12 deletions
src/slic3r/GUI

View file

@ -3913,7 +3913,7 @@ void ObjectList::apply_volumes_order()
if (wxGetApp().app_config->get("order_volumes") != "1" || !m_objects)
return;
for (int obj_idx = 0; m_objects->size(); obj_idx++)
for (int obj_idx = 0; obj_idx < m_objects->size(); obj_idx++)
reorder_volumes_and_get_selection(obj_idx);
}