#9483 - Added keyboard shortcut CTRL+D to toggle the visibility of the printbed reference axes

This commit is contained in:
enricoturri1966 2023-03-07 08:59:33 +01:00
parent d99364d74d
commit f038eca52c
4 changed files with 25 additions and 12 deletions

View file

@ -366,6 +366,9 @@ std::tuple<Bed3D::Type, std::string, std::string> Bed3D::detect_type(const Point
void Bed3D::render_axes()
{
if (!m_show_axes)
return;
if (m_build_volume.valid())
#if ENABLE_WORLD_COORDINATE
m_axes.render(Transform3d::Identity(), 0.25f);