Skip to content

Commit

Permalink
fix ordered item options aren't rendered as expected against double b…
Browse files Browse the repository at this point in the history
…yte texts.
  • Loading branch information
HirokazuNishi committed Jan 30, 2020
1 parent 0b26c80 commit a07ea8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConfigurablePdfFont/Model/Font.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function __construct(
$this->name = $data['name'];
$this->regular = $data['regular'];
$this->bold = $data['bold'] ?? null;
$this->italic = $data['bold'] ?? null;
$this->italic = $data['italic'] ?? null;
}

/**
Expand Down

0 comments on commit a07ea8c

Please sign in to comment.