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-07-29 08:05:03 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5f192b787a1b060fc36663036fba21390e7e371d
5f192b78
1 parent
c530cb3e
Fix linter warning
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
pdf/lib/src/pdf/obj/catalog.dart
pdf/lib/src/pdf/obj/catalog.dart
View file @
5f192b7
...
...
@@ -145,7 +145,7 @@ class PdfCatalog extends PdfObject<PdfDict> {
for
(
final
w
in
widgets
)
{
if
(
w
.
annot
is
PdfTextField
)
{
// collect textfield font references
PdfTextField
tf
=
w
.
annot
as
PdfTextField
;
final
tf
=
w
.
annot
as
PdfTextField
;
fontRefs
.
addAll
(
PdfDict
.
values
({
tf
.
font
.
name
:
tf
.
font
.
ref
()}));
}
final
ref
=
w
.
ref
();
...
...
Please
register
or
login
to post a comment