Module: wine Branch: master Commit: 7fe3ba934cb0f4908d20a9136b36f206c1b78fa6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7fe3ba934cb0f4908d20a9136b...
Author: James Hawkins truiken@gmail.com Date: Sun May 6 20:29:30 2007 -0500
msi: Add the ES_AUTOHSCROLL style to the edit control.
---
dlls/msi/dialog.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 5440e67..72da99f 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -1146,7 +1146,7 @@ static UINT msi_dialog_edit_control( msi_dialog *dialog, MSIRECORD *rec ) LPWSTR val;
control = msi_dialog_add_control( dialog, rec, szEdit, - WS_BORDER | WS_TABSTOP ); + WS_BORDER | WS_TABSTOP | ES_AUTOHSCROLL ); control->handler = msi_dialog_edit_handler; prop = MSI_RecordGetString( rec, 9 ); if( prop )