removing additional offset - why did this ever work ?
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43014 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2232,8 +2232,12 @@ void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc)
|
|||||||
if ( HasFlag(wxTR_FULL_ROW_HIGHLIGHT) )
|
if ( HasFlag(wxTR_FULL_ROW_HIGHLIGHT) )
|
||||||
{
|
{
|
||||||
int x, y, w, h;
|
int x, y, w, h;
|
||||||
|
// TODO : using DoGetPosition should be wrong on any platform, the dc is focused on this window
|
||||||
|
#ifdef __WXMAC__
|
||||||
|
x=y=0;
|
||||||
|
#else
|
||||||
DoGetPosition(&x, &y);
|
DoGetPosition(&x, &y);
|
||||||
|
#endif
|
||||||
DoGetSize(&w, &h);
|
DoGetSize(&w, &h);
|
||||||
dc.DrawRectangle(x, item->GetY()+offset, w, total_h-offset);
|
dc.DrawRectangle(x, item->GetY()+offset, w, total_h-offset);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user