]> git.saurik.com Git - wxWidgets.git/commitdiff
Reset the item's text in SetItemFont to ensure that the text will be
authorRobin Dunn <robin@alldunn.com>
Sat, 23 Dec 2006 00:10:15 +0000 (00:10 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 23 Dec 2006 00:10:15 +0000 (00:10 +0000)
remeasured with the new font, and the bounding rect will be adjusted.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44040 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/treectrl.cpp

index 92dc2fce7d58ffbe704492331d45b9f3593d22f0..8eb97993010df45184bf46e0caec3b05ca4a7dfa 100644 (file)
@@ -1172,6 +1172,10 @@ void wxTreeCtrl::SetItemFont(const wxTreeItemId& item, const wxFont& font)
 
     attr->SetFont(font);
 
 
     attr->SetFont(font);
 
+    // Reset the item's text to ensure that the bounding rect will be adjusted
+    // for the new font.
+    SetItemText(item, GetItemText(item));
+    
     RefreshItem(item);
 }
 
     RefreshItem(item);
 }