adapt defines for ctrl/command key
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68719 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -307,7 +307,7 @@ wxString wxAcceleratorEntry::ToString() const
|
||||
int flags = GetFlags();
|
||||
if ( flags & wxACCEL_ALT )
|
||||
text += _("Alt+");
|
||||
if ( flags & (wxACCEL_CTRL | wxACCEL_CMD) )
|
||||
if ( flags & wxACCEL_CTRL )
|
||||
text += _("Ctrl+");
|
||||
if ( flags & wxACCEL_SHIFT )
|
||||
text += _("Shift+");
|
||||
|
||||
Reference in New Issue
Block a user