From 02f32477c8f5d76d0cf5bda2e1ec13c8953312e1 Mon Sep 17 00:00:00 2001 From: Collin Lefeber Date: Sat, 18 Mar 2023 11:51:15 -0400 Subject: [PATCH] statusbar: update nerdfont glyphs As of https://github.com/ryanoasis/nerd-fonts/issues/1096 nf-mdi* glyphs are marked obsolete in nerd-fonts upstream Update the glyphs to non-deprecated nf-fa* counterparts --- src/ui/statusbar.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/statusbar.rs b/src/ui/statusbar.rs index 8bf1bc20..7be52496 100644 --- a/src/ui/statusbar.rs +++ b/src/ui/statusbar.rs @@ -47,9 +47,9 @@ impl StatusBar { .flip_status_indicators .unwrap_or(false); - const NF_PLAY: &str = "\u{f909} "; - const NF_PAUSE: &str = "\u{f8e3} "; - const NF_STOP: &str = "\u{f9da} "; + const NF_PLAY: &str = "\u{f04b} "; + const NF_PAUSE: &str = "\u{f04c} "; + const NF_STOP: &str = "\u{f04d} "; let indicators = match (nerdfont, flipped) { (false, false) => ("▶ ", "▮▮", "◼ "), (false, true) => ("▮▮", "▶ ", "▶ "),