using the slides backgrounds

This commit is contained in:
Chris Cochrun 2024-11-02 13:37:33 -05:00
parent db9e8430d9
commit bdbcf5da56
3 changed files with 38 additions and 28 deletions

View file

@ -126,7 +126,11 @@ impl cosmic::Application for App {
windows.push(core.main_window_id().unwrap());
}
let initial_slide = SlideBuilder::new()
.background(PathBuf::from("/home/chris/vids/test/camprules2024.mp4"))
.background(
PathBuf::from("/home/chris/vids/test/chosensmol.mp4")
.canonicalize()
.unwrap(),
)
.expect("oops video")
.text("Hello")
.font("Quicksand")
@ -358,7 +362,7 @@ fn test_slide<'a>() -> Element<'a, Message> {
{
let font = Font::with_name("Noto Sans");
let stack = stack!(
image(slide.background()),
image(slide.background().path.clone()),
text(slide.text()).size(slide.font_size() as u16).font(font)
);