diff options
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/gwps-common.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index f148646..1b63ded 100644 --- a/apps/gui/gwps-common.c +++ b/apps/gui/gwps-common.c @@ -1426,8 +1426,11 @@ static int evaluate_conditional(struct gui_wps *gwps, int cond_index) #endif #ifdef HAVE_ALBUMART - if (data->albumart_cond_index == cond_index) + if (data->wps_uses_albumart != WPS_ALBUMART_NONE && + data->albumart_cond_index == cond_index) + { draw_album_art(gwps, audio_current_aa_hid(), true); + } #endif return ret; |