Fixed bug: wxPGProperty::OnEvent() was never called if primary editor window was NULL (as could be if limited editing was used)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55866 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2008-09-25 15:59:49 +00:00
parent aadca0d5ac
commit 7de050ad3f

View File

@@ -3279,7 +3279,9 @@ void wxPropertyGrid::OnCustomEditorEvent( wxCommandEvent &event )
} }
} }
if ( wnd && !buttonWasHandled ) if ( !buttonWasHandled )
{
if ( wnd )
{ {
// First call editor class' event handler. // First call editor class' event handler.
const wxPGEditor* editor = selected->GetEditorClass(); const wxPGEditor* editor = selected->GetEditorClass();
@@ -3297,6 +3299,7 @@ void wxPropertyGrid::OnCustomEditorEvent( wxCommandEvent &event )
validationFailure = true; validationFailure = true;
} }
} }
}
// Then the property's custom handler (must be always called, unless // Then the property's custom handler (must be always called, unless
// validation failed). // validation failed).