changing sequence of makeFirstResponder and makeKeyAndOrderFront

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2010-04-12 12:18:33 +00:00
parent 82f8ea8547
commit c6d9001128

View File

@ -1648,8 +1648,8 @@ bool wxWidgetCocoaImpl::SetFocus()
if ( !CanFocus() )
return false;
[[m_osxView window] makeFirstResponder: m_osxView] ;
[[m_osxView window] makeKeyAndOrderFront:nil] ;
[[m_osxView window] makeFirstResponder: m_osxView] ;
return true;
}