X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/21d72d1755620c0017e872a5bc5a61fdea492c52..2819545569bbbfcade45a1bfe91d7c53b7c82f5d:/src/msw/choice.cpp diff --git a/src/msw/choice.cpp b/src/msw/choice.cpp index 3f104ea206..84d90c83b0 100644 --- a/src/msw/choice.cpp +++ b/src/msw/choice.cpp @@ -60,7 +60,7 @@ bool wxChoice::Create(wxWindow *parent, if ( !CreateControl(parent, id, pos, size, style, validator, name) ) return FALSE; - long msStyle = WS_CHILD | CBS_DROPDOWNLIST | WS_TABSTOP | WS_VISIBLE; + long msStyle = WS_CHILD | CBS_DROPDOWNLIST | WS_TABSTOP | WS_VISIBLE | WS_HSCROLL | WS_VSCROLL; if ( style & wxCB_SORT ) msStyle |= CBS_SORT;