Display saved/followed checkmark
This commit is contained in:
@@ -156,7 +156,7 @@ fn main() {
|
||||
#[cfg(feature = "mpris")]
|
||||
let mpris_manager = Arc::new(mpris::MprisManager::new(spotify.clone(), queue.clone()));
|
||||
|
||||
let library = Arc::new(Library::new(&event_manager, spotify.clone()));
|
||||
let library = Arc::new(Library::new(&event_manager, spotify.clone(), cfg.use_nerdfont.unwrap_or(false)));
|
||||
|
||||
let mut cmd_manager = CommandManager::new();
|
||||
cmd_manager.register_all(spotify.clone(), queue.clone(), library.clone());
|
||||
@@ -168,7 +168,12 @@ fn main() {
|
||||
cfg.keybindings.clone(),
|
||||
);
|
||||
|
||||
let search = ui::search::SearchView::new(event_manager.clone(), spotify.clone(), queue.clone());
|
||||
let search = ui::search::SearchView::new(
|
||||
event_manager.clone(),
|
||||
spotify.clone(),
|
||||
queue.clone(),
|
||||
library.clone()
|
||||
);
|
||||
|
||||
let libraryview = ui::library::LibraryView::new(queue.clone(), library.clone());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user