msi: Fix the height of the line control window.

This commit is contained in:
James Hawkins 2006-08-24 13:15:51 -07:00 committed by Alexandre Julliard
parent 25062556a8
commit 0de9cf4d00
1 changed files with 3 additions and 0 deletions

View File

@ -753,6 +753,9 @@ static UINT msi_dialog_line_control( msi_dialog *dialog, MSIRECORD *rec )
{
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;
}