Fixed two more locales-related issues
One warning was also fixed
This commit is contained in:
parent
8e75919948
commit
1f29a2593b
4 changed files with 4 additions and 3 deletions
src/slic3r/GUI
|
@ -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; obj_idx < m_objects->size(); obj_idx++)
|
||||
for (size_t obj_idx = 0; obj_idx < m_objects->size(); obj_idx++)
|
||||
reorder_volumes_and_get_selection(obj_idx);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue