comdlg32: Add ES_AUTOHSCROLL style to filename text box.

Vincent Povirk madewokherd at gmail.com
Tue Nov 3 13:29:32 CST 2015


-------------- next part --------------
From 9540bca0cccfba848b159fac58ccb47ca3fe0732 Mon Sep 17 00:00:00 2001
From: Vincent Povirk <vincent at codeweavers.com>
Date: Tue, 3 Nov 2015 13:27:30 -0600
Subject: [PATCH] comdlg32: Add ES_AUTOHSCROLL style to filename text box.

Signed-off-by: Vincent Povirk <vincent at codeweavers.com>
---
 dlls/comdlg32/comdlg32.rc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/comdlg32/comdlg32.rc b/dlls/comdlg32/comdlg32.rc
index f5c1c9e..5113e80 100644
--- a/dlls/comdlg32/comdlg32.rc
+++ b/dlls/comdlg32/comdlg32.rc
@@ -484,7 +484,7 @@ CAPTION "Open"
 FONT 8, "MS Shell Dlg"
 {
     LTEXT           "File name:", IDC_FILENAMESTATIC, 160, 240, 60, 9, SS_RIGHT | WS_CLIPSIBLINGS
-    EDITTEXT        IDC_FILENAME, 226, 240, 100, 12,  WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_CLIPSIBLINGS
+    EDITTEXT        IDC_FILENAME, 226, 240, 100, 12,  WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_CLIPSIBLINGS | ES_AUTOHSCROLL
 
     LTEXT           "Files of type:", IDC_FILETYPESTATIC, 160, 256, 60, 9, SS_RIGHT | WS_CLIPSIBLINGS
     COMBOBOX        IDC_FILETYPE, 226, 256, 100, 12,  WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL |
-- 
2.1.4



More information about the wine-patches mailing list