From 93a555caff727de0acedc64ff61ea00bc82d1c5a Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Wed, 15 Feb 2012 16:41:23 +0000 Subject: [PATCH] modification to fix in r70597, has-window check is unnecessary and perhaps incorrect git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/window.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index 4a3b0068cb..5717ec805f 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -1191,7 +1191,6 @@ wxWindowGTK *FindWindowForMouseEvent(wxWindowGTK *win, wxCoord& x, wxCoord& y) else { if ((child->m_wxwindow == NULL) && - !gtk_widget_get_has_window(child->m_widget) && win->IsClientAreaChild(child) && (child->m_x <= xx) && (child->m_y <= yy) &&