Strange sizing fix in DoResize() to workaround apparent

wxChoice returned size inconsistency


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14972 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-04-06 20:21:30 +00:00
parent 7a766dcda1
commit 232f35cba7

View File

@@ -1184,6 +1184,14 @@ void wxGenericDirCtrl::DoResize()
wxSize filterSz ;
if (m_filterListCtrl)
{
#ifdef __WXMSW__
// For some reason, this is required in order for the
// correct control height to always be returned, rather
// than the drop-down list height which is sometimes returned.
wxSize oldSize = m_filterListCtrl->GetSize();
m_filterListCtrl->SetSize(-1, -1, oldSize.x+10, -1, wxSIZE_USE_EXISTING);
m_filterListCtrl->SetSize(-1, -1, oldSize.x, -1, wxSIZE_USE_EXISTING);
#endif
filterSz = m_filterListCtrl->GetSize();
sz.y -= (filterSz.y + verticalSpacing);
}