From 30498ff8562af56c0a9a16a527881f793cff6c2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Tue, 24 Jan 2017 00:12:46 +0100 Subject: Fix visual regression --- nncmpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- cgit v1.2.3