From: Jaakko Salli Date: Fri, 26 Nov 2010 17:39:47 +0000 (+0000) Subject: Fix 100% CPU usage on wxGTK caused by a recent change in wxPropertyGridEditorEventFor... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5569834ddb01878e73432c3f3e8f7ed1fdd1d508 Fix 100% CPU usage on wxGTK caused by a recent change in wxPropertyGridEditorEventForwarder::ProcessEvent() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/propgrid/propgrid.cpp b/src/propgrid/propgrid.cpp index 947380709f..f79faf1af2 100644 --- a/src/propgrid/propgrid.cpp +++ b/src/propgrid/propgrid.cpp @@ -3906,8 +3906,7 @@ private: // Always skip event.Skip(); - if ( m_propGrid->HandleCustomEditorEvent(event) ) - return true; + m_propGrid->HandleCustomEditorEvent(event); // // NB: We should return true if the event was recognized as