Skip to content

Commit 163d84e

Browse files
committed
CI
1 parent 76ae785 commit 163d84e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/bevy_text/src/pipeline.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ impl TextPipeline {
147147
let spans_iter = spans.iter().map(|(span_index, span, style, font_info)| {
148148
(
149149
*span,
150-
get_attrs(*span_index, *style, font_info, scale_factor),
150+
get_attrs(*span_index, style, font_info, scale_factor),
151151
)
152152
});
153153

@@ -444,7 +444,7 @@ fn get_attrs<'a>(
444444
) -> Attrs<'a> {
445445
let attrs = Attrs::new()
446446
.metadata(span_index)
447-
.family(Family::Name(&*face_info.family_name))
447+
.family(Family::Name(&face_info.family_name))
448448
.stretch(face_info.stretch)
449449
.style(face_info.style)
450450
.weight(face_info.weight)

0 commit comments

Comments
 (0)