making SetFocus bringing TLW to front as Carbon, see #10876

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60973 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2009-06-10 07:04:33 +00:00
parent 2e4986548d
commit 47e2984762

View File

@ -1271,6 +1271,7 @@ bool wxWidgetCocoaImpl::SetFocus()
return false;
[[m_osxView window] makeFirstResponder: m_osxView] ;
[[m_osxView window] makeKeyAndOrderFront:nil] ;
return true;
}