Update Nerdfont glyphs (#1141)
This commit is contained in:
@@ -176,7 +176,7 @@ impl ListItem for Album {
|
||||
fn display_right(&self, library: &Library) -> String {
|
||||
let saved = if library.is_saved_album(self) {
|
||||
if library.cfg.values().use_nerdfont.unwrap_or(false) {
|
||||
"\u{f62b} "
|
||||
"\u{f012c} "
|
||||
} else {
|
||||
"✓ "
|
||||
}
|
||||
|
||||
@@ -101,7 +101,7 @@ impl ListItem for Artist {
|
||||
fn display_right(&self, library: &Library) -> String {
|
||||
let followed = if library.is_followed_artist(self) {
|
||||
if library.cfg.values().use_nerdfont.unwrap_or(false) {
|
||||
"\u{f62b} "
|
||||
"\u{f012c} "
|
||||
} else {
|
||||
"✓ "
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@ impl Playable {
|
||||
Playable::Track(track) => Playable::Track(track),
|
||||
}) {
|
||||
if library.cfg.values().use_nerdfont.unwrap_or_default() {
|
||||
"\u{f62b}"
|
||||
"\u{f012c}"
|
||||
} else {
|
||||
"✓"
|
||||
}
|
||||
|
||||
@@ -197,7 +197,7 @@ impl ListItem for Playlist {
|
||||
fn display_right(&self, library: &Library) -> String {
|
||||
let saved = if library.is_saved_playlist(self) {
|
||||
if library.cfg.values().use_nerdfont.unwrap_or(false) {
|
||||
"\u{f62b} "
|
||||
"\u{f012c} "
|
||||
} else {
|
||||
"✓ "
|
||||
}
|
||||
|
||||
@@ -83,7 +83,7 @@ impl ListItem for Show {
|
||||
fn display_right(&self, library: &Library) -> String {
|
||||
let saved = if library.is_saved_show(self) {
|
||||
if library.cfg.values().use_nerdfont.unwrap_or(false) {
|
||||
"\u{f62b} "
|
||||
"\u{f012c} "
|
||||
} else {
|
||||
"✓ "
|
||||
}
|
||||
|
||||
@@ -227,7 +227,7 @@ impl ListItem for Track {
|
||||
} else {
|
||||
let saved = if library.is_saved_track(&Playable::Track(self.clone())) {
|
||||
if library.cfg.values().use_nerdfont.unwrap_or(false) {
|
||||
"\u{f62b}"
|
||||
"\u{f012c}"
|
||||
} else {
|
||||
"✓"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user