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:
committed by
Henrik Friedrichsen
parent
1259badd9a
commit
9de86e6294
@@ -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) => ("▮▮", "▶ ", "▶ "),
|
||||
|
||||
Reference in New Issue
Block a user