Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3271362a
Commit
3271362a
authored
Jun 25, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: The dialog units are based on a 12-point font size, despite the documentation.
parent
395e4110
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dialog.c
dlls/msi/dialog.c
+2
-2
No files found.
dlls/msi/dialog.c
View file @
3271362a
...
...
@@ -171,7 +171,7 @@ static HWND hMsiHiddenWindow;
static
INT
msi_dialog_scale_unit
(
msi_dialog
*
dialog
,
INT
val
)
{
return
(
dialog
->
scale
*
val
+
5
)
/
10
;
return
MulDiv
(
val
,
dialog
->
scale
,
12
)
;
}
static
msi_control
*
msi_dialog_find_control
(
msi_dialog
*
dialog
,
LPCWSTR
name
)
...
...
@@ -2911,7 +2911,7 @@ static INT msi_dialog_get_sans_serif_height( HWND hwnd )
if
(
hdc
)
{
memset
(
&
lf
,
0
,
sizeof
lf
);
lf
.
lfHeight
=
MulDiv
(
1
0
,
GetDeviceCaps
(
hdc
,
LOGPIXELSY
),
72
);
lf
.
lfHeight
=
MulDiv
(
1
2
,
GetDeviceCaps
(
hdc
,
LOGPIXELSY
),
72
);
strcpyW
(
lf
.
lfFaceName
,
szSansSerif
);
hFont
=
CreateFontIndirectW
(
&
lf
);
if
(
hFont
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment