From: Robin Dunn Date: Thu, 12 Apr 2007 00:23:41 +0000 (+0000) Subject: Use the wxWANTS_CHARS style X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9c8d71beb8bd9657649a6dd48237785c2bda6848 Use the wxWANTS_CHARS style git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45410 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/contrib/gizmos/wxCode/src/treelistctrl.cpp b/wxPython/contrib/gizmos/wxCode/src/treelistctrl.cpp index 1fbe0b94e9..0ee61d3b0b 100644 --- a/wxPython/contrib/gizmos/wxCode/src/treelistctrl.cpp +++ b/wxPython/contrib/gizmos/wxCode/src/treelistctrl.cpp @@ -1860,7 +1860,7 @@ bool wxTreeListMainWindow::Create (wxTreeListCtrl *parent, if (major < 10) style |= wxTR_ROW_LINES; #endif - wxScrolledWindow::Create (parent, id, pos, size, style|wxHSCROLL|wxVSCROLL, name); + wxScrolledWindow::Create (parent, id, pos, size, style|wxHSCROLL|wxVSCROLL|wxWANTS_CHARS, name); #if wxUSE_VALIDATORS SetValidator(validator);