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
ab65c269
Commit
ab65c269
authored
Oct 07, 2016
by
Huw Davies
Committed by
Alexandre Julliard
Oct 07, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Don't try to wrap the end-of-paragraph run.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
13ae8c91
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
wrap.c
dlls/riched20/wrap.c
+2
-2
No files found.
dlls/riched20/wrap.c
View file @
ab65c269
...
@@ -624,8 +624,8 @@ static ME_DisplayItem *ME_WrapHandleRun(ME_WrapContext *wc, ME_DisplayItem *p)
...
@@ -624,8 +624,8 @@ static ME_DisplayItem *ME_WrapHandleRun(ME_WrapContext *wc, ME_DisplayItem *p)
wc
->
pt
.
x
+
run
->
nWidth
-
wc
->
context
->
pt
.
x
>
wc
->
nAvailWidth
)
wc
->
pt
.
x
+
run
->
nWidth
-
wc
->
context
->
pt
.
x
>
wc
->
nAvailWidth
)
{
{
int
loc
=
wc
->
context
->
pt
.
x
+
wc
->
nAvailWidth
-
wc
->
pt
.
x
;
int
loc
=
wc
->
context
->
pt
.
x
+
wc
->
nAvailWidth
-
wc
->
pt
.
x
;
/* total white run
?
*/
/* total white run
or end para
*/
if
(
run
->
nFlags
&
MERF_WHITESPACE
)
{
if
(
run
->
nFlags
&
(
MERF_WHITESPACE
|
MERF_ENDPARA
)
)
{
/* let the overflow logic handle it */
/* let the overflow logic handle it */
wc
->
bOverflown
=
TRUE
;
wc
->
bOverflown
=
TRUE
;
return
p
;
return
p
;
...
...
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