From 75ff187505fb56c974a78679ad20ece8d4ab00d3 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 30 Sep 2025 06:09:31 -0500 Subject: [PATCH] removing unused imports --- src/ui/presentation_editor.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/ui/presentation_editor.rs b/src/ui/presentation_editor.rs index 118a85a..947b842 100644 --- a/src/ui/presentation_editor.rs +++ b/src/ui/presentation_editor.rs @@ -1,9 +1,6 @@ use std::{io, path::PathBuf}; -use crate::core::{ - presentations::Presentation, service_items::ServiceTrait, - slide::Slide, -}; +use crate::core::presentations::Presentation; use cosmic::{ dialog::file_chooser::{open::Dialog, FileFilter}, iced::{alignment::Vertical, ContentFit, Length}, @@ -11,8 +8,7 @@ use cosmic::{ theme, widget::{ self, button, container, horizontal_space, icon, - image::{self, Handle}, - text, text_input, Space, + image::Handle, text, text_input, Space, }, Element, Task, };