From 5569834ddb01878e73432c3f3e8f7ed1fdd1d508 Mon Sep 17 00:00:00 2001 From: Jaakko Salli Date: Fri, 26 Nov 2010 17:39:47 +0000 Subject: [PATCH] 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 --- src/propgrid/propgrid.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 -- 2.45.2