git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46653
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if (style == wxBG_STYLE_CUSTOM)
{
if (style == wxBG_STYLE_CUSTOM)
{
- GdkWindow *window = (GdkWindow*) NULL;
- if (m_wxwindow)
+ GdkWindow *window;
+ if ( m_wxwindow )
+ {
window = GTK_PIZZA(m_wxwindow)->bin_window;
window = GTK_PIZZA(m_wxwindow)->bin_window;
- window = GetConnectWidget()->window;
+ {
+ GtkWidget * const w = GetConnectWidget();
+ window = w ? w->window : NULL;
+ }
#endif
m_needsStyleChange = false;
}
#endif
m_needsStyleChange = false;
}
+ else // window not realized yet
+ {
// Do in OnIdle, because the window is not yet available
m_needsStyleChange = true;
// Do in OnIdle, because the window is not yet available
m_needsStyleChange = true;
// Don't apply widget style, or we get a grey background
}
// Don't apply widget style, or we get a grey background
}