James Hawkins : msi: Fix the height of the line control window.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Aug 25 05:26:51 CDT 2006


Module: wine
Branch: master
Commit: 0de9cf4d002964eef7b2c4fa51c6e7e478286e09
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=0de9cf4d002964eef7b2c4fa51c6e7e478286e09

Author: James Hawkins <truiken at 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;
 }




More information about the wine-cvs mailing list