Do not use seq arrange when in SLA

This commit is contained in:
Lukas Matena 2025-02-18 08:46:21 +01:00
parent 37285c3b7e
commit 830354d792
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ void ArrangeSettingsDialogImgui::render(float pos_x, float pos_y, bool current_b
ImGuiWindowFlags_NoMove | ImGuiWindowFlags_AlwaysAutoResize |
ImGuiWindowFlags_NoCollapse);
if (! wxGetApp().preset_bundle->prints.get_edited_preset().config.opt_bool("complete_objects")) {
if (! wxGetApp().preset_bundle->prints.get_edited_preset().config.opt_bool("complete_objects") || wxGetApp().preset_bundle->prints.get_edited_preset().printer_technology() == ptSLA) {
Settings settings;
read_settings(settings, m_db.get());

View File

@ -7127,7 +7127,7 @@ void Plater::arrange(bool current_bed_only)
else
mode = wxGetKeyState(WXK_SHIFT) ? ArrangeSelectionMode::SelectionOnly : ArrangeSelectionMode::Full;
const bool sequential = p->config->has("complete_objects") && p->config->opt_bool("complete_objects");
const bool sequential = p->config->has("complete_objects") && p->config->opt_bool("complete_objects") && p->printer_technology == ptFFF;
if (p->can_arrange()) {
if (sequential) {