Only ignore Alt down on Mac

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56013 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2008-10-01 14:55:54 +00:00
parent 91babb9d5c
commit cfceb4a8e0

View File

@@ -990,7 +990,11 @@ void wxRichTextCtrl::OnChar(wxKeyEvent& event)
default: default:
{ {
#ifdef __WXMAC__
if (event.CmdDown()) if (event.CmdDown())
#else
if (event.CmdDown() || event.AltDown())
#endif
{ {
event.Skip(); event.Skip();
return; return;