mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 11:23:42 +00:00
Selection rectangle is supressed when FDM custom supports gizmo is active
This commit is contained in:
@@ -3658,7 +3658,8 @@ void GLCanvas3D::on_mouse(wxMouseEvent& evt)
|
|||||||
}
|
}
|
||||||
else if (evt.LeftDown() && (evt.ShiftDown() || evt.AltDown()) && m_picking_enabled)
|
else if (evt.LeftDown() && (evt.ShiftDown() || evt.AltDown()) && m_picking_enabled)
|
||||||
{
|
{
|
||||||
if (m_gizmos.get_current_type() != GLGizmosManager::SlaSupports)
|
if (m_gizmos.get_current_type() != GLGizmosManager::SlaSupports
|
||||||
|
&& m_gizmos.get_current_type() != GLGizmosManager::FdmSupports)
|
||||||
{
|
{
|
||||||
m_rectangle_selection.start_dragging(m_mouse.position, evt.ShiftDown() ? GLSelectionRectangle::Select : GLSelectionRectangle::Deselect);
|
m_rectangle_selection.start_dragging(m_mouse.position, evt.ShiftDown() ? GLSelectionRectangle::Select : GLSelectionRectangle::Deselect);
|
||||||
m_dirty = true;
|
m_dirty = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user