mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 23:54:00 -06:00
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_sequential_limits
This commit is contained in:
commit
0d8a1c3d2a
3 changed files with 42 additions and 2 deletions
|
@ -37,8 +37,12 @@ void RotoptimizeJob::prepare()
|
|||
|
||||
m_selected_object_ids.clear();
|
||||
m_selected_object_ids.reserve(sel.size());
|
||||
for (auto &[obj_idx, ignore] : sel)
|
||||
m_selected_object_ids.emplace_back(obj_idx);
|
||||
|
||||
for (const auto &s : sel) {
|
||||
int obj_id;
|
||||
std::tie(obj_id, std::ignore) = s;
|
||||
m_selected_object_ids.emplace_back(obj_id);
|
||||
}
|
||||
}
|
||||
|
||||
void RotoptimizeJob::process()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue