Removed no longer needed code to fix combo sizing (causes layout problems on Windows)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36624 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1190,22 +1190,6 @@ void wxGenericDirCtrl::DoResize()
|
|||||||
wxSize filterSz ;
|
wxSize filterSz ;
|
||||||
if (m_filterListCtrl)
|
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(wxDefaultCoord,
|
|
||||||
wxDefaultCoord,
|
|
||||||
oldSize.x+10,
|
|
||||||
wxDefaultCoord,
|
|
||||||
wxSIZE_USE_EXISTING);
|
|
||||||
m_filterListCtrl->SetSize(wxDefaultCoord,
|
|
||||||
wxDefaultCoord,
|
|
||||||
oldSize.x,
|
|
||||||
wxDefaultCoord,
|
|
||||||
wxSIZE_USE_EXISTING);
|
|
||||||
#endif
|
|
||||||
filterSz = m_filterListCtrl->GetSize();
|
filterSz = m_filterListCtrl->GetSize();
|
||||||
sz.y -= (filterSz.y + verticalSpacing);
|
sz.y -= (filterSz.y + verticalSpacing);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user