From 472236b9fa9159a36f3eacafcc50ad4759339db1 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 12 Sep 2019 08:57:24 -0400 Subject: [PATCH] vscroll on dropdown window --- minigui.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minigui.d b/minigui.d index 4c1ba08..7f33fd7 100644 --- a/minigui.d +++ b/minigui.d @@ -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);