summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/gwps-common.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c
index f1486461c9..1b63dedc4e 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)
1426#endif 1426#endif
1427 1427
1428#ifdef HAVE_ALBUMART 1428#ifdef HAVE_ALBUMART
1429 if (data->albumart_cond_index == cond_index) 1429 if (data->wps_uses_albumart != WPS_ALBUMART_NONE &&
1430 data->albumart_cond_index == cond_index)
1431 {
1430 draw_album_art(gwps, audio_current_aa_hid(), true); 1432 draw_album_art(gwps, audio_current_aa_hid(), true);
1433 }
1431#endif 1434#endif
1432 1435
1433 return ret; 1436 return ret;