Fixed two more locales-related issues

One warning was also fixed
This commit is contained in:
Lukas Matena 2021-06-07 12:30:57 +02:00
parent 8e75919948
commit 1f29a2593b
4 changed files with 4 additions and 3 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; 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);
}