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
6db25fae
Commit
6db25fae
authored
Mar 20, 2002
by
Guy L. Albertelli
Committed by
Alexandre Julliard
Mar 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Correct RBN_CHILDSIZE rect value for CCS_VERT rebar.
- Do UpdateWindow only if doing redraws when doing layout.
parent
a5585624
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
rebar.c
dlls/comctl32/rebar.c
+8
-2
No files found.
dlls/comctl32/rebar.c
View file @
6db25fae
...
...
@@ -111,6 +111,8 @@
* 21. Fix test in REBAR_Layout.
* rev 8d
* 22. Add support for WM_WINDOWPOSCHANGED to save new origin of window.
* 23. Correct RBN_CHILDSIZE rect value for CCS_VERT rebar.
* 24. Do UpdateWindow only if doing redraws.
*
*
* Still to do:
...
...
@@ -1254,7 +1256,10 @@ REBAR_MoveChildWindows (REBAR_INFO *infoPtr, UINT start, UINT endplus)
rbcz
.
wID
=
lpBand
->
wID
;
rbcz
.
rcChild
=
lpBand
->
rcChild
;
rbcz
.
rcBand
=
lpBand
->
rcBand
;
rbcz
.
rcBand
.
left
+=
lpBand
->
cxHeader
;
if
(
infoPtr
->
dwStyle
&
CCS_VERT
)
rbcz
.
rcBand
.
top
+=
lpBand
->
cxHeader
;
else
rbcz
.
rcBand
.
left
+=
lpBand
->
cxHeader
;
REBAR_Notify
((
NMHDR
*
)
&
rbcz
,
infoPtr
,
RBN_CHILDSIZE
);
if
(
!
EqualRect
(
&
lpBand
->
rcChild
,
&
rbcz
.
rcChild
))
{
TRACE
(
"Child rect changed by NOTIFY for band %u
\n
"
,
i
);
...
...
@@ -1323,7 +1328,8 @@ REBAR_MoveChildWindows (REBAR_INFO *infoPtr, UINT start, UINT endplus)
if
(
!
EndDeferWindowPos
(
deferpos
))
ERR
(
"EndDeferWindowPos returned NULL
\n
"
);
UpdateWindow
(
infoPtr
->
hwndSelf
);
if
(
infoPtr
->
DoRedraw
)
UpdateWindow
(
infoPtr
->
hwndSelf
);
if
(
infoPtr
->
fStatus
&
NTF_HGHTCHG
)
{
infoPtr
->
fStatus
&=
~
NTF_HGHTCHG
;
...
...
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