FIX: remove Tolerance test and modify wiki link for mac

Change-Id: Ieca66b0226eef692191e9e7bed56e54dc9d7b40c
This commit is contained in:
zhimin.zeng 2023-08-16 17:18:01 +08:00 committed by lane.wei
parent 9657a7c042
commit fb48e250f0

View file

@ -2911,20 +2911,6 @@ void MainFrame::init_menubar_as_editor()
},
this);
// Tolerance Test
append_menu_item(
m_calib_menu, wxID_ANY, _L("Orca Tolerance Test"), _L("Orca Tolerance Test"),
[this](wxCommandEvent &) {
m_plater->new_project();
m_plater->add_model(false, Slic3r::resources_dir() + "/calib/tolerance_test/OrcaToleranceTest.stl");
},
"", nullptr,
[this]() {
return m_plater->is_view3D_shown();
;
},
this);
// Advance calibrations
auto advance_menu = new wxMenu();
append_menu_item(
@ -2959,7 +2945,7 @@ void MainFrame::init_menubar_as_editor()
// help
append_menu_item(
m_calib_menu, wxID_ANY, _L("Tutorial"), _L("Calibration help"),
[this](wxCommandEvent &) { wxLaunchDefaultBrowser("https://github.com/SoftFever/OrcaSlicer/wiki/Calibration", wxBROWSER_NEW_WINDOW); }, "", nullptr,
[this](wxCommandEvent &) { wxLaunchDefaultBrowser("https://wiki.bambulab.com/en/bambu-studio/Calibration", wxBROWSER_NEW_WINDOW); }, "", nullptr,
[this]() {
return m_plater->is_view3D_shown();
;