wxVListBox doesn't handle (at least horz) resizing properly without wxFULL_REPAINT_ON_RESIZE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27347 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2004-05-18 21:31:33 +00:00
parent 7539ba5615
commit fef7400f9c

View File

@ -68,7 +68,7 @@ bool wxVListBox::Create(wxWindow *parent,
long style,
const wxString& name)
{
style |= wxWANTS_CHARS;
style |= wxWANTS_CHARS | wxFULL_REPAINT_ON_RESIZE;
if ( !wxVScrolledWindow::Create(parent, id, pos, size, style, name) )
return false;