]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/tglbtn.cpp
Checkable items in wxToolMenuBarTool supported.
[wxWidgets.git] / src / msw / tglbtn.cpp
index 6b91280e856ac18738c99954fad26fba785306fe..d9c7fd124549d8f3b4281f420d66e8dc3ed17ef5 100644 (file)
@@ -12,7 +12,7 @@
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
-// declatations
+// declarations
 // ============================================================================
 
 // ----------------------------------------------------------------------------
@@ -114,7 +114,7 @@ wxSize wxToggleButton::DoGetBestSize() const
 {
    wxString label = wxGetWindowText(GetHWND());
    int wBtn;
-   GetTextExtent(label, &wBtn, NULL);
+   GetTextExtent(wxStripMenuCodes(label), &wBtn, NULL);
 
    int wChar, hChar;
    wxGetCharSize(GetHWND(), &wChar, &hChar, GetFont());
@@ -135,6 +135,7 @@ wxSize wxToggleButton::DoGetBestSize() const
    wxSize sz(wBtn, hBtn);
 #endif
 
+   CacheBestSize(sz);
    return sz;
 }