Fix nerdfont pause/stop glyphs

b42315d accidentally changed both of these to the glyph for play, this
reverts them back to the correct glyphs.
This commit is contained in:
Ronak Buch
2021-05-28 14:31:02 -04:00
committed by Henrik Friedrichsen
parent 1259badd9a
commit 9de86e6294

View File

@@ -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) => ("▮▮", "", ""),