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
627aa4d7
Commit
627aa4d7
authored
Mar 20, 2001
by
Guy L. Albertelli
Committed by
Alexandre Julliard
Mar 20, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Native version seems to always re-draw the selected text at the end of
a rollup.
parent
313051f9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
combo.c
controls/combo.c
+14
-0
No files found.
controls/combo.c
View file @
627aa4d7
...
...
@@ -466,6 +466,9 @@ static LRESULT COMBO_WindowPosChanging(
*/
if
(
posChanging
->
cy
!=
newComboHeight
)
{
TRACE
(
"posChanging->cy=%d, newComboHeight=%d, oldbot=%d, oldtop=%d
\n
"
,
posChanging
->
cy
,
newComboHeight
,
lphc
->
droppedRect
.
bottom
,
lphc
->
droppedRect
.
top
);
lphc
->
droppedRect
.
bottom
=
lphc
->
droppedRect
.
top
+
posChanging
->
cy
-
newComboHeight
;
posChanging
->
cy
=
newComboHeight
;
...
...
@@ -1429,6 +1432,17 @@ static LRESULT COMBO_Command( LPHEADCOMBO lphc, WPARAM wParam, HWND hWnd )
CB_NOTIFY
(
lphc
,
CBN_SELCHANGE
);
/* added due to traces from native */
if
(
CB_OWNERDRAWN
(
lphc
)
)
{
HDC
hDC
;
hDC
=
GetDC
(
hWnd
);
CBPaintText
(
lphc
,
hDC
,
lphc
->
textRect
);
ReleaseDC
(
hWnd
,
hDC
);
}
/* end of added due to traces from native */
/* fall through */
case
LBN_SETFOCUS
:
...
...
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