From 0cd741f8159003ebdf6f1de6bf6aecebc0930181 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 16 Dec 2025 09:38:03 -0600 Subject: [PATCH] idk --- src/ui/slide_editor.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ui/slide_editor.rs b/src/ui/slide_editor.rs index ca6ce51..fd3de5b 100644 --- a/src/ui/slide_editor.rs +++ b/src/ui/slide_editor.rs @@ -38,8 +38,13 @@ pub struct Text { text: String, } +pub struct Image { + source: PathBuf, +} + pub enum SlideWidget { Text(Text), + Image(Image), } #[derive(Debug, Clone)]