From: Václav Slavík Date: Sun, 8 Oct 2000 22:29:38 +0000 (+0000) Subject: fixed EditLabel() for wxLC_REPORT mode X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d7ace8a929126af5d6d8afdcad22c8e6a6902263 fixed EditLabel() for wxLC_REPORT mode git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index b546c685a7..8e7857291f 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -768,6 +768,8 @@ void wxListLineData::CalculateSize( wxDC *dc, int spacing ) m_bound_all.height = lh; node = node->Next(); } + m_bound_label.width = m_bound_all.width; + m_bound_label.height = m_bound_all.height; break; } }