diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index 30d4b17f8c..83d76e28f6 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -168,6 +168,9 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label) else if ( current == wxT("DELETE") ) { keyCode = WXK_DELETE; } + else if ( current == wxT("BACK") ) { + keyCode = WXK_BACK; + } else if ( current == wxT("INS") ) { keyCode = WXK_INSERT; }