From 13f9209c60ef3f0d259885b5887597811d9ef140 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 21 Oct 2013 15:31:21 -0400 Subject: [PATCH] lineedit scrollbar --- minigui.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minigui.d b/minigui.d index 4c57d33..6c1ae97 100644 --- a/minigui.d +++ b/minigui.d @@ -1820,7 +1820,7 @@ class LineEdit : Widget { super(parent); parentWindow = parent.parentWindow; createWin32Window(this, "edit", "", - WS_BORDER|WS_HSCROLL|ES_AUTOHSCROLL); + WS_BORDER);//|WS_HSCROLL|ES_AUTOHSCROLL); } string _content;