mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-22 06:04:01 -06:00
Removed m_ prefix from public member variables.
This commit is contained in:
parent
32436aea6f
commit
95af708171
7 changed files with 31 additions and 31 deletions
|
@ -202,7 +202,7 @@ void GLGizmoSeam::update_model_object() const
|
|||
if (! mv->is_model_part())
|
||||
continue;
|
||||
++idx;
|
||||
updated |= mv->m_seam_facets.set(*m_triangle_selectors[idx].get());
|
||||
updated |= mv->seam_facets.set(*m_triangle_selectors[idx].get());
|
||||
}
|
||||
|
||||
if (updated)
|
||||
|
@ -229,7 +229,7 @@ void GLGizmoSeam::update_from_model_object()
|
|||
const TriangleMesh* mesh = &mv->mesh();
|
||||
|
||||
m_triangle_selectors.emplace_back(std::make_unique<TriangleSelectorGUI>(*mesh));
|
||||
m_triangle_selectors.back()->deserialize(mv->m_seam_facets.get_data());
|
||||
m_triangle_selectors.back()->deserialize(mv->seam_facets.get_data());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue