Skip to content

Commit fe858ea

Browse files
committed
Only pass Tf operator what it needs
1 parent 5db47bc commit fe858ea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/mudbrick/content_stream/tf.ex

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
defmodule Mudbrick.ContentStream.Tf do
22
@moduledoc false
3-
@enforce_keys [:font, :size]
4-
defstruct [:font, :size]
3+
@enforce_keys [:font_identifier, :size]
4+
defstruct [:font_identifier, :size]
55

66
defimpl Mudbrick.Object do
77
def to_iodata(tf) do
88
[
9-
Mudbrick.Object.to_iodata(tf.font.resource_identifier),
9+
Mudbrick.Object.to_iodata(tf.font_identifier),
1010
" ",
1111
to_string(tf.size),
1212
" Tf"

lib/mudbrick/text_block/output.ex

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ defmodule Mudbrick.TextBlock.Output do
2424
} = tb
2525
) do
2626
tl = %TL{leading: tb.leading}
27-
tf = %Tf{font: font, size: font_size}
27+
tf = %Tf{font_identifier: font.resource_identifier, size: font_size}
2828

2929
%__MODULE__{position: position, font: font, font_size: font_size}
3030
|> end_block()
@@ -192,9 +192,9 @@ defmodule Mudbrick.TextBlock.Output do
192192

193193
defp with_font(output, op, part) do
194194
output
195-
|> add(%Tf{font: output.font, size: output.font_size})
195+
|> add(%Tf{font_identifier: output.font.resource_identifier, size: output.font_size})
196196
|> add(op)
197-
|> add(%Tf{font: part.font, size: part.font_size})
197+
|> add(%Tf{font_identifier: part.font.resource_identifier, size: part.font_size})
198198
end
199199

200200
defp colour(output, {r, g, b}) do

0 commit comments

Comments
 (0)