From: Julian Smart <julian@anthemion.co.uk> Date: Sat, 6 Apr 2002 20:21:30 +0000 (+0000) Subject: Strange sizing fix in DoResize() to workaround apparent X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/232f35cba7a17fe7e3d0f7270f9ee08847da2fc8 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 --- diff --git a/src/generic/dirctrlg.cpp b/src/generic/dirctrlg.cpp index a9a8a03c6b..6d7b7c2158 100644 --- a/src/generic/dirctrlg.cpp +++ b/src/generic/dirctrlg.cpp @@ -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); }