From bd0e0968ae41fa748c27349a3a09d3bb59cdd969 Mon Sep 17 00:00:00 2001 From: talwat <83217276+talwat@users.noreply.github.com> Date: Tue, 2 Dec 2025 22:01:19 +0100 Subject: [PATCH] fix: non-mpris compilations --- src/ui.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ui.rs b/src/ui.rs index b95e6be..3f2caea 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -52,9 +52,11 @@ pub struct State { pub sink: Arc, pub current: Current, pub bookmarked: bool, - list: String, timer: Option, pub(crate) width: usize, + + #[allow(dead_code)] + list: String, } impl State {