mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 10:02:12 +00:00
Input Shaping Frequency
Input Shaping calibration based in https://marlinfw.org/docs/gcode/M593.html
This commit is contained in:
@@ -2974,6 +2974,17 @@ void MainFrame::init_menubar_as_editor()
|
||||
},
|
||||
"", nullptr,
|
||||
[this]() {return m_plater->is_view3D_shown();; }, this);
|
||||
|
||||
append_menu_item(
|
||||
advance_menu, wxID_ANY, _L("Input Shaping"), _L("Input Shaping"),
|
||||
[this](wxCommandEvent&) {
|
||||
std::string url = "https://marlinfw.org/docs/gcode/M593.html";//TODO: Make OrcaSlicer wiki page
|
||||
if (!m_IS_calib_dlg)
|
||||
m_IS_calib_dlg = new Input_Shaping_Test_Dlg((wxWindow*)this, wxID_ANY, m_plater);
|
||||
m_IS_calib_dlg->ShowModal();
|
||||
},
|
||||
"", nullptr,
|
||||
[this]() {return m_plater->is_view3D_shown();; }, this);
|
||||
m_topbar->GetCalibMenu()->AppendSubMenu(advance_menu, _L("More..."));
|
||||
|
||||
// help
|
||||
|
||||
Reference in New Issue
Block a user