mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-16 18:45:52 +08:00
Do not use seq arrange when in SLA
This commit is contained in:
parent
37285c3b7e
commit
830354d792
@ -49,7 +49,7 @@ void ArrangeSettingsDialogImgui::render(float pos_x, float pos_y, bool current_b
|
|||||||
ImGuiWindowFlags_NoMove | ImGuiWindowFlags_AlwaysAutoResize |
|
ImGuiWindowFlags_NoMove | ImGuiWindowFlags_AlwaysAutoResize |
|
||||||
ImGuiWindowFlags_NoCollapse);
|
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;
|
Settings settings;
|
||||||
read_settings(settings, m_db.get());
|
read_settings(settings, m_db.get());
|
||||||
|
|
||||||
|
@ -7127,7 +7127,7 @@ void Plater::arrange(bool current_bed_only)
|
|||||||
else
|
else
|
||||||
mode = wxGetKeyState(WXK_SHIFT) ? ArrangeSelectionMode::SelectionOnly : ArrangeSelectionMode::Full;
|
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 (p->can_arrange()) {
|
||||||
if (sequential) {
|
if (sequential) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user