mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 00:37:51 -06:00
ENH: change help menu order
Change-Id: I1589de6feac1a77f8ebc17314f513969d9891c5f
This commit is contained in:
parent
6f7f93b232
commit
bb70b60dbc
1 changed files with 5 additions and 4 deletions
|
@ -1868,16 +1868,17 @@ static wxMenu* generate_help_menu()
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
append_menu_item(helpMenu, wxID_ANY, _L("Open Network Test"), _L("Open Network Test"), [](wxCommandEvent&) {
|
||||||
|
NetworkTestDialog dlg(wxGetApp().mainframe);
|
||||||
|
dlg.ShowModal();
|
||||||
|
});
|
||||||
|
|
||||||
// About
|
// About
|
||||||
#ifndef __APPLE__
|
#ifndef __APPLE__
|
||||||
wxString about_title = wxString::Format(_L("&About %s"), SLIC3R_APP_FULL_NAME);
|
wxString about_title = wxString::Format(_L("&About %s"), SLIC3R_APP_FULL_NAME);
|
||||||
append_menu_item(helpMenu, wxID_ANY, about_title, about_title,
|
append_menu_item(helpMenu, wxID_ANY, about_title, about_title,
|
||||||
[](wxCommandEvent&) { Slic3r::GUI::about(); });
|
[](wxCommandEvent&) { Slic3r::GUI::about(); });
|
||||||
#endif
|
#endif
|
||||||
append_menu_item(helpMenu, wxID_ANY, _L("Open Network Test"), _L("Open Network Test"), [](wxCommandEvent&) {
|
|
||||||
NetworkTestDialog dlg(wxGetApp().mainframe);
|
|
||||||
dlg.ShowModal();
|
|
||||||
});
|
|
||||||
|
|
||||||
return helpMenu;
|
return helpMenu;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue