Remove unneeded workaround for a ScrolledWindow issue that is now fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59302 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli 2009-03-03 21:17:36 +00:00
parent ed9e243d58
commit 8c5c56e201

View File

@ -5030,11 +5030,7 @@ void wxPropertyGrid::OnFocusEvent( wxFocusEvent& event )
void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent& event )
{
HandleFocusChange((wxWindow*)event.GetEventObject());
//
// event.Skip() being commented out is aworkaround for bug reported
// in ticket #4840 (wxScrolledWindow problem with automatic scrolling).
//event.Skip();
event.Skip();
}
// -----------------------------------------------------------------------