From: Robert Roebling Date: Sun, 25 Jan 2009 20:57:43 +0000 (+0000) Subject: Little correction to hand-made sizing X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2a0c05ebe36b48ebb142b1cfbd02253b00ef172f Little correction to hand-made sizing git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/listctrl/listtest.cpp b/samples/listctrl/listtest.cpp index 162d2b7d1f..2b0e6daa43 100644 --- a/samples/listctrl/listtest.cpp +++ b/samples/listctrl/listtest.cpp @@ -328,7 +328,7 @@ void MyFrame::DoSize() wxCoord y = (2*size.y)/3; m_listCtrl->SetSize(0, 0, size.x-320, y); if (m_simpleListCtrl) m_simpleListCtrl->SetSize(size.x-320+1, 0, 320-1, y); - m_logWindow->SetSize(0, y + 1, size.x, size.y - y); + m_logWindow->SetSize(0, y + 1, size.x, size.y - y -1); } bool MyFrame::CheckNonVirtual() const