mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 10:02:12 +00:00
Fix re-entrant render() calls, add an assert to enforce
This commit is contained in:
@@ -1361,7 +1361,7 @@ void ObjectList::update_selections_on_canvas()
|
||||
const int sel_cnt = GetSelectedItemsCount();
|
||||
if (sel_cnt == 0) {
|
||||
selection.clear();
|
||||
wxGetApp().plater()->canvas3D()->render();
|
||||
wxGetApp().plater()->canvas3D()->set_as_dirty();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1391,7 +1391,7 @@ void ObjectList::update_selections_on_canvas()
|
||||
else
|
||||
add_to_selection(item, selection, true);
|
||||
|
||||
wxGetApp().plater()->canvas3D()->render();
|
||||
wxGetApp().plater()->canvas3D()->set_as_dirty();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1402,7 +1402,7 @@ void ObjectList::update_selections_on_canvas()
|
||||
for (auto item: sels)
|
||||
add_to_selection(item, selection, false);
|
||||
|
||||
wxGetApp().plater()->canvas3D()->render();
|
||||
wxGetApp().plater()->canvas3D()->set_as_dirty();
|
||||
}
|
||||
|
||||
void ObjectList::select_item(const wxDataViewItem& item)
|
||||
|
||||
Reference in New Issue
Block a user