aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2017-01-24 00:12:46 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2017-01-24 00:12:46 +0100
commit30498ff8562af56c0a9a16a527881f793cff6c2c (patch)
tree1c7cf764da3b15b8a29c4494e133b113e8e12e6c
parentf76b060dc2a8aa85198a016b60588768f2a51244 (diff)
downloadnncmpp-30498ff8562af56c0a9a16a527881f793cff6c2c.tar.gz
nncmpp-30498ff8562af56c0a9a16a527881f793cff6c2c.tar.xz
nncmpp-30498ff8562af56c0a9a16a527881f793cff6c2c.zip
Fix visual regression
-rw-r--r--nncmpp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nncmpp.c b/nncmpp.c
index 648fb36..8739ac7 100644
--- a/nncmpp.c
+++ b/nncmpp.c
@@ -1044,7 +1044,7 @@ app_draw_status (void)
bool stopped = g_ctx.state == PLAYER_STOPPED;
chtype a_song_action = stopped ? a_normal : a_highlight;
- const char *toggle = g_ctx.state == PLAYER_PLAYING ? "|>" : "||";
+ const char *toggle = g_ctx.state == PLAYER_PLAYING ? "||" : "|>";
row_buffer_append_args (&buf,
"<<", a_song_action, " ", a_normal,
toggle, a_highlight, " ", a_normal,