Fix export bug with only pad being enabled.

SPE-1431
This commit is contained in:
tamasmeszaros 2023-02-06 16:42:22 +01:00
parent 0e1f8bd080
commit 4c3599fac1

View File

@ -943,7 +943,7 @@ bool MainFrame::can_export_supports() const
const PrintObjects& objects = m_plater->sla_print().objects();
for (const SLAPrintObject* object : objects)
{
if (!object->support_mesh().empty())
if (!object->support_mesh().empty() || !object->pad_mesh().empty())
{
can_export = true;
break;