Added "Keyboard Shortcuts" dialog
This commit is contained in:
parent
354458ae73
commit
661086554a
6 changed files with 198 additions and 0 deletions
src/slic3r/GUI
|
@ -432,6 +432,9 @@ void MainFrame::init_menubar()
|
|||
[this](wxCommandEvent&) { wxLaunchDefaultBrowser("http://github.com/prusa3d/slic3r/issues/new"); });
|
||||
append_menu_item(helpMenu, wxID_ANY, _(L("About Slic3r")), _(L("Show about dialog")),
|
||||
[this](wxCommandEvent&) { Slic3r::GUI::about(); });
|
||||
helpMenu->AppendSeparator();
|
||||
append_menu_item(helpMenu, wxID_ANY, _(L("Keyboard Shortcuts")) + "\t?", _(L("Show the list of the keyboard shortcuts")),
|
||||
[this](wxCommandEvent&) { wxGetApp().keyboard_shortcuts(); });
|
||||
}
|
||||
|
||||
// menubar
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue