Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
AtlasAutocode
2024-12-19 09:58:08 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
David PHAM-VAN
2024-12-26 14:02:47 +0000
Commit
35bb1ef0cefa0f38c634f10d5eebd09b5e5da2d6
35bb1ef0
1 parent
cb7c9336
Fix TextStyle merge decoration
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
pdf/lib/src/widgets/text_style.dart
pdf/lib/src/widgets/text_style.dart
View file @
35bb1ef
...
...
@@ -355,7 +355,7 @@ class TextStyle {
lineSpacing:
other
.
lineSpacing
,
height:
other
.
height
,
background:
other
.
background
,
decoration:
decoration
?
.
merge
(
other
.
decoration
),
decoration:
decoration
==
null
?
other
.
decoration
:
decoration
!
.
merge
(
other
.
decoration
),
decorationColor:
other
.
decorationColor
,
decorationStyle:
other
.
decorationStyle
,
decorationThickness:
other
.
decorationThickness
,
...
...
Please
register
or
login
to post a comment