From fef7400f9c888aa4203e5ed24ef0ae76da3d55ea Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 18 May 2004 21:31:33 +0000 Subject: [PATCH] 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 --- src/generic/vlbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/vlbox.cpp b/src/generic/vlbox.cpp index 989f6f797d..bb58622e9b 100644 --- a/src/generic/vlbox.cpp +++ b/src/generic/vlbox.cpp @@ -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;