From 9de86e629419b99bc5e9a1f24734d65992ba8524 Mon Sep 17 00:00:00 2001 From: Ronak Buch Date: Fri, 28 May 2021 14:31:02 -0400 Subject: [PATCH] Fix nerdfont pause/stop glyphs b42315d accidentally changed both of these to the glyph for play, this reverts them back to the correct glyphs. --- src/ui/statusbar.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/statusbar.rs b/src/ui/statusbar.rs index bd554c7..6531a37 100644 --- a/src/ui/statusbar.rs +++ b/src/ui/statusbar.rs @@ -46,8 +46,8 @@ impl StatusBar { .unwrap_or(false); const NF_PLAY: &str = "\u{f909} "; - const NF_PAUSE: &str = "\u{f909} "; - const NF_STOP: &str = "\u{f909} "; + const NF_PAUSE: &str = "\u{f8e3} "; + const NF_STOP: &str = "\u{f9da} "; let indicators = match (nerdfont, flipped) { (false, false) => ("▶ ", "▮▮", "◼ "), (false, true) => ("▮▮", "▶ ", "▶ "),