diff options
Diffstat (limited to '')
-rw-r--r-- | src/screen_artist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/screen_artist.c b/src/screen_artist.c index c66ae53f9..74fd96c1a 100644 --- a/src/screen_artist.c +++ b/src/screen_artist.c @@ -663,7 +663,8 @@ artist_cmd(mpdclient_t *c, command_t cmd) } if (artist_lw_cmd(c, cmd)) { - artist_repaint(); + if (screen_is_visible(&screen_artist)) + artist_repaint(); return 1; } |