paint the space remaining after the columns too in wxListHeaderWindow::OnPaint() (#9855)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55117 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1897,6 +1897,19 @@ void wxListHeaderWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
|
|||||||
|
|
||||||
x += wCol;
|
x += wCol;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fill in what's missing to the right of the columns, otherwise we will
|
||||||
|
// leave an unpainted area when columns are removed (and it looks better)
|
||||||
|
if ( x < w )
|
||||||
|
{
|
||||||
|
wxRendererNative::Get().DrawHeaderButton
|
||||||
|
(
|
||||||
|
this,
|
||||||
|
dc,
|
||||||
|
wxRect(x, HEADER_OFFSET_Y, w - x, h),
|
||||||
|
0
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListHeaderWindow::DrawCurrent()
|
void wxListHeaderWindow::DrawCurrent()
|
||||||
|
Reference in New Issue
Block a user