Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f3491aa9
Commit
f3491aa9
authored
Aug 16, 2005
by
Frank Richter
Committed by
Alexandre Julliard
Aug 16, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change CB_GETCOMBOBOX to return STATE_SYSTEM_PRESSED in
COMBOBOXINFO.stateButton when really the button is pressed, not when the combo is dropped down.
parent
43e93117
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
combo.c
dlls/user/combo.c
+1
-1
No files found.
dlls/user/combo.c
View file @
f3491aa9
...
@@ -1834,7 +1834,7 @@ static LRESULT COMBO_GetComboBoxInfo(LPHEADCOMBO lphc, COMBOBOXINFO *pcbi)
...
@@ -1834,7 +1834,7 @@ static LRESULT COMBO_GetComboBoxInfo(LPHEADCOMBO lphc, COMBOBOXINFO *pcbi)
pcbi
->
rcItem
=
lphc
->
textRect
;
pcbi
->
rcItem
=
lphc
->
textRect
;
pcbi
->
rcButton
=
lphc
->
buttonRect
;
pcbi
->
rcButton
=
lphc
->
buttonRect
;
pcbi
->
stateButton
=
0
;
pcbi
->
stateButton
=
0
;
if
(
lphc
->
wState
&
CBF_
DROPPED
)
if
(
lphc
->
wState
&
CBF_
BUTTONDOWN
)
pcbi
->
stateButton
|=
STATE_SYSTEM_PRESSED
;
pcbi
->
stateButton
|=
STATE_SYSTEM_PRESSED
;
if
(
IsRectEmpty
(
&
lphc
->
buttonRect
))
if
(
IsRectEmpty
(
&
lphc
->
buttonRect
))
pcbi
->
stateButton
|=
STATE_SYSTEM_INVISIBLE
;
pcbi
->
stateButton
|=
STATE_SYSTEM_INVISIBLE
;
...
...
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