]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/treectlg.cpp
fixed tree item size calculation (patch 922454, partially)
[wxWidgets.git] / src / generic / treectlg.cpp
index 4767c02c687826af2feba0c3ca16902283667efe..01cd41e868b6f1a7ee1da418680155cb98988796 100644 (file)
@@ -3211,6 +3211,8 @@ void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem *item, wxDC &dc )
         dc.SetFont(attr->GetFont());
     else if ( item->IsBold() )
         dc.SetFont(m_boldFont);
+    else
+        dc.SetFont(m_normalFont);
 
     dc.GetTextExtent( item->GetText(), &text_w, &text_h );
     text_h+=2;