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
ad7f0b95
Commit
ad7f0b95
authored
Jun 22, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/listview: Invalidate list after WM_MEASUREITEM notification.
parent
8e18e9e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
listview.c
dlls/comctl32/listview.c
+7
-2
No files found.
dlls/comctl32/listview.c
View file @
ad7f0b95
...
...
@@ -1027,7 +1027,8 @@ static inline DWORD notify_postpaint (const LISTVIEW_INFO *infoPtr, NMLVCUSTOMDR
return
notify_customdraw
(
infoPtr
,
CDDS_POSTPAINT
,
lpnmlvcd
);
}
static
void
notify_measureitem
(
LISTVIEW_INFO
*
infoPtr
)
/* returns TRUE when repaint needed, FALSE otherwise */
static
BOOL
notify_measureitem
(
LISTVIEW_INFO
*
infoPtr
)
{
MEASUREITEMSTRUCT
mis
;
mis
.
CtlType
=
ODT_LISTVIEW
;
...
...
@@ -1038,7 +1039,11 @@ static void notify_measureitem(LISTVIEW_INFO *infoPtr)
mis
.
itemHeight
=
infoPtr
->
nItemHeight
;
SendMessageW
(
infoPtr
->
hwndNotify
,
WM_MEASUREITEM
,
mis
.
CtlID
,
(
LPARAM
)
&
mis
);
if
(
infoPtr
->
nItemHeight
!=
max
(
mis
.
itemHeight
,
1
))
{
infoPtr
->
nMeasureItemHeight
=
infoPtr
->
nItemHeight
=
max
(
mis
.
itemHeight
,
1
);
return
TRUE
;
}
return
FALSE
;
}
/******** Item iterator functions **********************************/
...
...
@@ -10792,7 +10797,7 @@ LISTVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
if
((
infoPtr
->
dwStyle
&
LVS_OWNERDRAWFIXED
)
&&
(
infoPtr
->
uView
==
LV_VIEW_DETAILS
))
{
notify_measureitem
(
infoPtr
);
if
(
notify_measureitem
(
infoPtr
))
LISTVIEW_InvalidateList
(
infoPtr
);
}
LISTVIEW_UpdateSize
(
infoPtr
);
...
...
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