]> git.saurik.com Git - wxWidgets.git/commitdiff
No longer paint the selection background under the image
authorJulian Smart <julian@anthemion.co.uk>
Wed, 18 Apr 2001 17:13:31 +0000 (17:13 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Wed, 18 Apr 2001 17:13:31 +0000 (17:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9784 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/treectlg.cpp

index c7155ed9a212ddbe1b273eaf2313b4c9e9609424..19b6d7184fb75893e836816e151c1ac1e51da2af 100644 (file)
@@ -1770,7 +1770,15 @@ void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc)
         dc.SetBrush(wxBrush(colBg, wxSOLID));
     }
 
-    dc.DrawRectangle( item->GetX()-2, item->GetY(), item->GetWidth()+2, total_h );
+    if (item->IsSelected() && image != NO_IMAGE)
+    {
+        // If it's selected, and there's an image, then we should
+        // take care to leave the area under the image painted in the
+        // background colour.
+        dc.DrawRectangle( item->GetX() + image_w - 2, item->GetY(), item->GetWidth() - image_w + 2, total_h );
+    }
+    else
+        dc.DrawRectangle( item->GetX()-2, item->GetY(), item->GetWidth()+2, total_h );
 
     if ( image != NO_IMAGE )
     {