Do not render bed texture when looking from below the bed in hollowing gizmo

The same as it is for FDM/SLA supports and seam gizmos.
This commit is contained in:
Lukas Matena 2020-10-16 15:56:45 +02:00
parent d49a98f154
commit 637324d386

View File

@ -5408,6 +5408,7 @@ void GLCanvas3D::_render_bed(bool bottom, bool show_axes) const
bool show_texture = ! bottom ||
(m_gizmos.get_current_type() != GLGizmosManager::FdmSupports
&& m_gizmos.get_current_type() != GLGizmosManager::SlaSupports
&& m_gizmos.get_current_type() != GLGizmosManager::Hollow
&& m_gizmos.get_current_type() != GLGizmosManager::Seam);
wxGetApp().plater()->get_bed().render(const_cast<GLCanvas3D&>(*this), bottom, scale_factor, show_axes, show_texture);