mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-03 17:05:43 +02:00
Fixed loading of hole_height when a hole is selected (hollowing gizmo)
This commit is contained in:
@@ -1079,7 +1079,7 @@ void GLGizmoHollow::select_point(int i)
|
|||||||
|
|
||||||
if (i == AllPoints) {
|
if (i == AllPoints) {
|
||||||
m_new_hole_radius = m_c->m_model_object->sla_drain_holes[0].radius;
|
m_new_hole_radius = m_c->m_model_object->sla_drain_holes[0].radius;
|
||||||
m_new_hole_height = m_c->m_model_object->sla_drain_holes[0].height;
|
m_new_hole_height = m_c->m_model_object->sla_drain_holes[0].height - HoleStickOutLength;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@@ -1088,7 +1088,7 @@ void GLGizmoHollow::select_point(int i)
|
|||||||
m_selected[i] = true;
|
m_selected[i] = true;
|
||||||
m_selection_empty = false;
|
m_selection_empty = false;
|
||||||
m_new_hole_radius = m_c->m_model_object->sla_drain_holes[i].radius;
|
m_new_hole_radius = m_c->m_model_object->sla_drain_holes[i].radius;
|
||||||
m_new_hole_height = m_c->m_model_object->sla_drain_holes[i].height;
|
m_new_hole_height = m_c->m_model_object->sla_drain_holes[i].height - HoleStickOutLength;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user