]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed some glitches
authorKarsten Ballüder <ballueder@usa.net>
Fri, 9 Apr 1999 09:45:38 +0000 (09:45 +0000)
committerKarsten Ballüder <ballueder@usa.net>
Fri, 9 Apr 1999 09:45:38 +0000 (09:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/treectrl.cpp

index 8c9e480741aa51428a60977d55f42af032443e0c..a367847fdb1c9107daf19a189bdb65aa42723918 100644 (file)
@@ -1116,7 +1116,8 @@ void wxTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc)
     {
         dc.SetClippingRegion( item->GetX(), item->GetY(), image_w-2, total_h );
         m_imageListNormal->Draw( item->GetSelectedImage(), dc,
-                                 item->GetX(), item->GetY()-1,
+                                 item->GetX(),
+                                 item->GetY()/* +((total_h > image_h)?((total_h-image_h)/2):0)*/,
                                  wxIMAGELIST_DRAW_TRANSPARENT );
         dc.DestroyClippingRegion();
     }
@@ -1124,14 +1125,15 @@ void wxTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc)
     {
         dc.SetClippingRegion( item->GetX(), item->GetY(), image_w-2, total_h );
         m_imageListNormal->Draw( item->GetImage(), dc,
-                                 item->GetX(), item->GetY()-1,
+                                 item->GetX(),
+                                 item->GetY() /*+((total_h > image_h)?((total_h-image_h)/2):0)*/,
                                  wxIMAGELIST_DRAW_TRANSPARENT );
         dc.DestroyClippingRegion();
     }
 
     dc.SetBackgroundMode(wxTRANSPARENT);
     dc.DrawText( item->GetText(), image_w + item->GetX(), item->GetY()
-                 + (total_h > text_h)? (total_h - text_h)/2 : 0);
+                 + ((total_h > text_h) ? (total_h - text_h)/2 : 0));
 
     // restore normal font for bold items
     if (fontOld.Ok())