vscroll on dropdown window

This commit is contained in:
Adam D. Ruppe 2019-09-12 08:57:24 -04:00
parent 48d1e3395d
commit 472236b9fa
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ abstract class ComboboxBase : Widget {
class DropDownSelection : ComboboxBase {
this(Widget parent = null) {
version(win32_widgets)
super(3 /* CBS_DROPDOWNLIST */, parent);
super(3 /* CBS_DROPDOWNLIST */ | WS_VSCROLL, parent);
else version(custom_widgets) {
super(parent);