James Hawkins : msi: Fix the height of the line control window.
Module: wine Branch: master Commit: 0de9cf4d002964eef7b2c4fa51c6e7e478286e09 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=0de9cf4d002964eef7b2c4fa... Author: James Hawkins <truiken(a)gmail.com> Date: Thu Aug 24 13:15:51 2006 -0700 msi: Fix the height of the line control window. --- dlls/msi/dialog.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 5bee66b..5a1f550 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -753,6 +753,9 @@ static UINT msi_dialog_line_control( msi { TRACE("%p %p\n", dialog, rec); + /* line is exactly 2 units in height */ + MSI_RecordSetInteger( rec, 7, 2 ); + msi_dialog_add_control( dialog, rec, szStatic, SS_ETCHEDHORZ | SS_SUNKEN ); return ERROR_SUCCESS; }
participants (1)
-
Alexandre Julliard