From d27e12d9f8a138405db71ed383ac1a3ec7714e31 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 19 Sep 2025 10:39:11 -0500 Subject: [PATCH] removing dead code --- src/ui/song_editor.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/ui/song_editor.rs b/src/ui/song_editor.rs index 455872b..998fa8d 100644 --- a/src/ui/song_editor.rs +++ b/src/ui/song_editor.rs @@ -2,11 +2,7 @@ use std::{io, path::PathBuf, sync::Arc}; use cosmic::{ dialog::file_chooser::{open::Dialog, FileFilter}, - iced::{ - alignment::Vertical, - font::{Family, Stretch, Style, Weight}, - Font, Length, - }, + iced::{alignment::Vertical, Font, Length}, iced_wgpu::graphics::text::cosmic_text::fontdb, iced_widget::{column, row}, theme, @@ -20,7 +16,7 @@ use cosmic::{ use dirs::font_dir; use iced_video_player::Video; use rayon::iter::{IntoParallelIterator, ParallelIterator}; -use tracing::{debug, error, warn}; +use tracing::{debug, error}; use crate::{ core::{service_items::ServiceTrait, slide::Slide, songs::Song}, @@ -46,7 +42,6 @@ pub struct SongEditor { editing: bool, background: Option, video: Option