Turn problematic code off for now....

This commit is contained in:
Jeff Young 2018-09-22 17:54:59 +01:00
parent 4edf18b023
commit 458af25282
1 changed files with 7 additions and 2 deletions

View File

@ -166,8 +166,13 @@ void LAYER_BOX_SELECTOR::ResyncBitmapOnly()
void LAYER_BOX_SELECTOR::onKeyDown( wxKeyEvent& aEvent )
{
#ifdef __WXOSX_MAC__
if( aEvent.GetKeyCode() == WXK_ESCAPE && IsPopupShown() )
{
Dismiss();
else
aEvent.Skip();
return;
}
#endif
aEvent.Skip();
}