diff options
Diffstat (limited to 'src/exec')
| -rw-r--r-- | src/exec/state.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exec/state.rs b/src/exec/state.rs index f0b060af..99c162c6 100644 --- a/src/exec/state.rs +++ b/src/exec/state.rs @@ -162,7 +162,7 @@ impl FontState { size: self.resolve_size(), top_edge: self.top_edge, bottom_edge: self.bottom_edge, - color: self.color, + fill: self.color, } } @@ -205,8 +205,8 @@ pub struct FontProps { pub top_edge: VerticalFontMetric, /// What line to consider the bottom edge of text. pub bottom_edge: VerticalFontMetric, - /// The color of the text. - pub color: Fill, + /// The fill color of the text. + pub fill: Fill, } /// Font family definitions. |
