Applied patches for AIX,
Corrected prop dialog, Tabbing in parent top-level-windows no longer possible, git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3982 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -129,6 +129,10 @@ void wxPanel::OnNavigationKey( wxNavigationKeyEvent& event )
|
||||
wxWindow *focussed_child_of_p = this;
|
||||
for ( wxWindow *p = GetParent(); p; p = p->GetParent() )
|
||||
{
|
||||
// we don't want to tab into a different dialog or frame
|
||||
if ( focussed_child_of_p->IsTopLevel() )
|
||||
break;
|
||||
|
||||
if ( wxDynamicCast(p, wxPanel) )
|
||||
{
|
||||
event.SetCurrentFocus( focussed_child_of_p );
|
||||
|
||||
Reference in New Issue
Block a user