From 0050e023dc70a72b941cf665411c804c71ce0036 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Wed, 15 Feb 2006 13:26:28 +0000 Subject: [PATCH] The focus handling change in wxTopLevelWindows broke a few things. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37597 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/toplevel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gtk/toplevel.cpp b/src/gtk/toplevel.cpp index 9cb4987243..5e8b65ab9b 100644 --- a/src/gtk/toplevel.cpp +++ b/src/gtk/toplevel.cpp @@ -173,7 +173,7 @@ static gint gtk_frame_focus_in_callback( GtkWidget *widget, event.SetEventObject(g_activeFrame); g_activeFrame->GetEventHandler()->ProcessEvent(event); - return TRUE; + return false; } } @@ -208,7 +208,7 @@ static gint gtk_frame_focus_out_callback( GtkWidget *widget, g_activeFrame = NULL; } - return TRUE; + return false; } } -- 2.45.2