Fixed rotate gizmo hovering
This commit is contained in:
parent
ae0fc75b13
commit
749a1863e5
1 changed files with 1 additions and 1 deletions
|
@ -3906,7 +3906,7 @@ void GLCanvas3D::_picking_pass() const
|
|||
m_gizmos.set_hover_id(-1);
|
||||
}
|
||||
else
|
||||
m_gizmos.set_hover_id(inside && volume_id <= (int)GLGizmoBase::BASE_ID ? ((int)GLGizmoBase::BASE_ID - volume_id) : -1);
|
||||
m_gizmos.set_hover_id(inside && (unsigned int)volume_id <= GLGizmoBase::BASE_ID ? ((int)GLGizmoBase::BASE_ID - volume_id) : -1);
|
||||
|
||||
_update_volumes_hover_state();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue