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
2020-04-22 08:13:52 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
80a0ce2b68c4a1ca41c20e799fba676642b2317c
80a0ce2b
1 parent
0d46a467
Fix graphic state operator
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
pdf/CHANGELOG.md
pdf/lib/src/graphic_state.dart
pdf/CHANGELOG.md
View file @
80a0ce2
...
...
@@ -5,6 +5,7 @@
-
Use the Barcode library to generate QR-Codes
-
Fix Jpeg size detection
-
Update dependency to Barcode 1.8.0
-
Fix graphic state operator
## 1.6.1
...
...
pdf/lib/src/graphic_state.dart
View file @
80a0ce2
...
...
@@ -40,7 +40,7 @@ class PdfGraphicState {
@override
bool
operator
==(
dynamic
other
)
{
if
(!
other
is
PdfGraphicState
)
{
if
(!
(
other
is
PdfGraphicState
)
)
{
return
false
;
}
return
other
.
opacity
==
opacity
;
...
...
Please
register
or
login
to post a comment