summaryrefslogtreecommitdiff
path: root/apps/plugins/properties.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/properties.c')
-rw-r--r--apps/plugins/properties.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c
index 638d7380a5..53af4c5bab 100644
--- a/apps/plugins/properties.c
+++ b/apps/plugins/properties.c
@@ -446,9 +446,11 @@ enum plugin_status plugin_start(const void* parameter)
446 FOR_NB_SCREENS(i) 446 FOR_NB_SCREENS(i)
447 rb->viewportmanager_theme_enable(i, true, NULL); 447 rb->viewportmanager_theme_enable(i, true, NULL);
448 448
449 bool usb = props_type == PROPS_ID3 ? rb->browse_id3(&id3, 0, 0, &tm, false) : 449 bool usb = props_type == PROPS_ID3 ? rb->browse_id3(&id3, 0, 0, &tm, 1) :
450 (props_type == PROPS_MUL_ID3 ? rb->browse_id3(&id3, 0, 0, NULL, mul_id3_count > 1) : 450#ifdef HAVE_TAGCACHE
451 browse_file_or_dir(&stats)); 451 props_type == PROPS_MUL_ID3 ? rb->browse_id3(&id3, 0, 0, NULL, mul_id3_count) :
452#endif
453 browse_file_or_dir(&stats);
452 454
453 FOR_NB_SCREENS(i) 455 FOR_NB_SCREENS(i)
454 rb->viewportmanager_theme_undo(i, false); 456 rb->viewportmanager_theme_undo(i, false);