Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett committed Mar 11, 2024
1 parent cac4e6b commit 9343641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ui/src/render/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ pub fn extract_uinode_text(
transform.w_axis[0] = transform.w_axis[0].round();
transform.w_axis[1] = transform.w_axis[1].round();

transform = transform * Mat4::from_scale(Vec3::splat(inverse_scale_factor));
transform *= Mat4::from_scale(Vec3::splat(inverse_scale_factor));

let mut color = LinearRgba::WHITE;
let mut current_section = usize::MAX;
Expand Down

0 comments on commit 9343641

Please sign in to comment.