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
50d77e68
Commit
50d77e68
authored
Mar 02, 2005
by
Robert Shearman
Committed by
Alexandre Julliard
Mar 02, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fix one more place where the code assumes row indices are
zero-based. - Document a known bug in the layout code.
parent
cf230457
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
rebar.c
dlls/comctl32/rebar.c
+2
-1
No files found.
dlls/comctl32/rebar.c
View file @
50d77e68
...
...
@@ -1595,7 +1595,7 @@ REBAR_Layout (REBAR_INFO *infoPtr, LPRECT lpRect, BOOL notify, BOOL resetclient)
/* now adjust all rectangles by using the height found above */
xy
=
0
;
row
=
1
;
row
=
0
;
for
(
i
=
0
;
i
<
infoPtr
->
uNumBands
;
i
++
)
{
lpBand
=
&
infoPtr
->
bands
[
i
];
if
(
HIDDENBAND
(
lpBand
))
continue
;
...
...
@@ -1771,6 +1771,7 @@ REBAR_Layout (REBAR_INFO *infoPtr, LPRECT lpRect, BOOL notify, BOOL resetclient)
if
(
!
(
lpBand
->
fDraw
&
DRAW_LAST_IN_ROW
)
)
continue
;
/* FIXME: this next line is wrong, but fixing it to be inverted causes IE's sidebars to be the wrong size */
if
(
lpBand
->
fMask
&
RBBS_VARIABLEHEIGHT
)
continue
;
if
(((
INT
)
lpBand
->
cyMaxChild
<
1
)
||
((
INT
)
lpBand
->
cyIntegral
<
1
))
{
...
...
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