Applied patch [ 1167891 ] wxNotebook display problem on MSW w/ XP theming
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33619 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
414f2513fc
commit
e2f6f8da0e
@ -754,11 +754,6 @@ int wxNotebook::HitTest(const wxPoint& pt, long *flags) const
|
||||
|
||||
void wxNotebook::OnSize(wxSizeEvent& event)
|
||||
{
|
||||
#if wxUSE_UXTHEME
|
||||
// background bitmap size has changed, update the brush using it too
|
||||
UpdateBgBrush();
|
||||
#endif // wxUSE_UXTHEME
|
||||
|
||||
if ( GetPageCount() == 0 )
|
||||
{
|
||||
// Prevents droppings on resize, but does cause some flicker
|
||||
@ -801,6 +796,11 @@ void wxNotebook::OnSize(wxSizeEvent& event)
|
||||
}
|
||||
}
|
||||
|
||||
#if wxUSE_UXTHEME
|
||||
// background bitmap size has changed, update the brush using it too
|
||||
UpdateBgBrush();
|
||||
#endif // wxUSE_UXTHEME
|
||||
|
||||
TabCtrl_AdjustRect(m_hwnd, false, &rc);
|
||||
|
||||
int width = rc.right - rc.left,
|
||||
|
Loading…
Reference in New Issue
Block a user