mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 06:57:36 -06:00
FIX:macos change delete character to backspace
Change-Id: I91f9b005b4105928ff73fc7b956ffa99974b9455
This commit is contained in:
parent
fc7b1cf9fe
commit
196f20fbc9
2 changed files with 3 additions and 3 deletions
|
@ -2112,7 +2112,7 @@ void MainFrame::init_menubar_as_editor()
|
|||
_L("Paste clipboard"), [this](wxCommandEvent&) { m_plater->paste_from_clipboard(); },
|
||||
"", nullptr, [this](){return m_plater->can_paste_from_clipboard(); }, this);
|
||||
// BBS Delete selected
|
||||
append_menu_item(editMenu, wxID_ANY, _L("Delete selected") + "\tDel",
|
||||
append_menu_item(editMenu, wxID_ANY, _L("Delete selected") + "\tBackSpace",
|
||||
_L("Deletes the current selection"),[this](wxCommandEvent&) { m_plater->remove_selected(); },
|
||||
"", nullptr, [this](){return can_delete(); }, this);
|
||||
//BBS: delete all
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue