From c73513ee0dc35cbe03979b8338f9e3ab2b7bfa7d Mon Sep 17 00:00:00 2001 From: Jesse Litton Date: Sun, 16 Mar 2025 01:24:28 -0500 Subject: [PATCH] Fix query of gcode's slicer version. (#8925) * Fix query of gcode's slicer version. --- src/slic3r/GUI/SelectMachine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/SelectMachine.cpp b/src/slic3r/GUI/SelectMachine.cpp index e10f6c051d..0c72dca0e1 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -3662,7 +3662,7 @@ bool SelectMachineDialog::is_show_timelapse() return false; }; - std::string standard_version = "01.04.00.00"; + std::string standard_version = "2.2.0"; PartPlate *plate = m_plater->get_partplate_list().get_curr_plate(); fs::path gcode_path = plate->get_tmp_gcode_path(); @@ -3680,7 +3680,7 @@ bool SelectMachineDialog::is_show_timelapse() } break; } - if (line == "BambuStudio") + if (line == "OrcaSlicer") is_version = true; } }