fixing some clippy warnings
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Chris Cochrun 2025-08-18 05:35:10 -05:00
parent f3d0cd5459
commit 1847a35f1e
3 changed files with 9 additions and 8 deletions

View file

@ -564,13 +564,13 @@ fn scale_font(font_size: f32, width: f32) -> f32 {
}
}
pub(crate) fn slide_view<'a>(
pub(crate) fn slide_view(
slide: Slide,
video: &'a Option<Video>,
video: &Option<Video>,
font: Font,
delegate: bool,
hide_mouse: bool,
) -> Element<'a, Message> {
) -> Element<'_, Message> {
let res = responsive(move |size| {
let width = size.height * 16.0 / 9.0;
let slide_text = slide.text();