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
David PHAM-VAN
2024-01-27 11:42:51 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c30728add7e79b6f86ddaea4e5e29eb7e50aee8b
c30728ad
1 parent
5deee6c7
Fix operator== type in TextDecoration class
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
pdf/CHANGELOG.md
pdf/lib/src/widgets/text_style.dart
pdf/CHANGELOG.md
View file @
c30728a
...
...
@@ -7,6 +7,7 @@
-
Update barcode golden pdf
-
Add support for hyphenation
[
ilja
]
-
Add an option to disable bidirectional support
[
Olzhas-Suleimen
]
-
Fix operator== type in TextDecoration class
## 3.10.7
...
...
pdf/lib/src/widgets/text_style.dart
View file @
c30728a
...
...
@@ -68,7 +68,7 @@ class TextDecoration {
}
@override
bool
operator
==(
dynamic
other
)
{
bool
operator
==(
Object
other
)
{
if
(
other
is
!
TextDecoration
)
{
return
false
;
}
...
...
Please
register
or
login
to post a comment