From a3febc3b3da83b74fbb73f784875b7619f8f2fc9 Mon Sep 17 00:00:00 2001 From: Filip Sykala - NTB T15p Date: Thu, 12 Sep 2024 12:38:00 +0200 Subject: [PATCH] Do not generate support tree when edit support points --- src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp index a235cf4840..e2b8946fc9 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp @@ -1148,7 +1148,7 @@ void GLGizmoSlaSupports::auto_generate() if (mo->sla_points_status != sla::PointsStatus::UserModified || m_normal_cache.empty() || dlg.ShowModal() == wxID_YES) { Plater::TakeSnapshot snapshot(wxGetApp().plater(), _L("Autogenerate support points")); - wxGetApp().CallAfter([this]() { reslice_until_step(slaposPad); }); + wxGetApp().CallAfter([this]() { reslice_until_step(slaposSupportPoints); }); mo->sla_points_status = sla::PointsStatus::Generating; } }