Checkbox needs an extra pixel in height on WinCE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28537 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2004-07-29 08:44:42 +00:00
parent 32524c8fb8
commit 5a6371b940

View File

@ -194,6 +194,9 @@ wxSize wxCheckBox::DoGetBestSize() const
wCheckbox = s_checkSize;
hCheckbox = s_checkSize;
}
#ifdef __WXWINCE__
hCheckbox += 1;
#endif
return wxSize(wCheckbox, hCheckbox);
}