From cc7b410d227e87c9aa67bf597a6a3a2c3e141d9a Mon Sep 17 00:00:00 2001 From: psykose Date: Sun, 1 Dec 2024 19:28:31 +0100 Subject: [PATCH] dead code --- src/ui/play_queue/song.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/ui/play_queue/song.rs b/src/ui/play_queue/song.rs index 3f2b0eb..b58d082 100644 --- a/src/ui/play_queue/song.rs +++ b/src/ui/play_queue/song.rs @@ -101,18 +101,6 @@ mod imp { format!("{:02}:{:02}", duration / 60, duration % 60) } - #[template_callback] - fn star_button_icon_name( - &self, /* TODO , starred: Option<&glib::DateTime> */ - ) -> &'static str { - /* TODO - match starred { - None => "heart-empty-symbolic", - Some(_) => "heart-full-symbolic", - } */ - "heart-empty-symbolic" - } - // song widget+drag behavior taken from gnome music #[template_callback]