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
1bf5e12e
Commit
1bf5e12e
authored
Jul 22, 2010
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jul 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Make sure that the focus is set to an existing property sheet button.
parent
b7c68573
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
propsheet.c
dlls/comctl32/propsheet.c
+8
-3
No files found.
dlls/comctl32/propsheet.c
View file @
1bf5e12e
...
@@ -3411,9 +3411,14 @@ PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
...
@@ -3411,9 +3411,14 @@ PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
psInfo
->
hwnd
=
hwnd
;
psInfo
->
hwnd
=
hwnd
;
SetWindowLongPtrW
(
hwnd
,
DWLP_USER
,
(
DWORD_PTR
)
psInfo
);
SetWindowLongPtrW
(
hwnd
,
DWLP_USER
,
(
DWORD_PTR
)
psInfo
);
/* set up the Next and Back buttons by default */
if
(
psInfo
->
ppshheader
.
dwFlags
&
INTRNL_ANY_WIZARD
)
PROPSHEET_SetWizButtons
(
hwnd
,
PSWIZB_BACK
|
PSWIZB_NEXT
);
{
SetFocus
(
GetDlgItem
(
hwnd
,
IDC_NEXT_BUTTON
));
/* set up the Next and Back buttons by default */
PROPSHEET_SetWizButtons
(
hwnd
,
PSWIZB_BACK
|
PSWIZB_NEXT
);
SetFocus
(
GetDlgItem
(
hwnd
,
IDC_NEXT_BUTTON
));
}
else
SetFocus
(
GetDlgItem
(
hwnd
,
IDOK
));
/* Set up fonts */
/* Set up fonts */
SystemParametersInfoW
(
SPI_GETICONTITLELOGFONT
,
0
,
&
logFont
,
0
);
SystemParametersInfoW
(
SPI_GETICONTITLELOGFONT
,
0
,
&
logFont
,
0
);
...
...
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