git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67377
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// for scrollable ones
detail = "viewport";
// for scrollable ones
detail = "viewport";
+ // clip rect is required to avoid painting background
+ // over upper left (w,h) of parent window
+ GdkRectangle clipRect = { x, y, w, h };
gtk_paint_shadow(
gtk_widget_get_style(win->m_wxwindow), gdk_event->window, GTK_STATE_NORMAL,
gtk_paint_shadow(
gtk_widget_get_style(win->m_wxwindow), gdk_event->window, GTK_STATE_NORMAL,
- shadow, NULL, wxGTKPrivate::GetEntryWidget(), detail, x, y, w, h);
+ shadow, &clipRect, wxGTKPrivate::GetEntryWidget(), detail, x, y, w, h);