summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 5e660b4386..f27c13c4f1 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -316,6 +316,12 @@ static const char graphic_numeric[] = "graphic,numeric";
316 316
317#endif /* HAVE_RECORDING */ 317#endif /* HAVE_RECORDING */
318 318
319#if (CONFIG_PLATFORM & PLATFORM_ANDROID)
320#define DEFAULT_TAGCACHE_SCAN_PATHS "/sdcard"
321#else
322#define DEFAULT_TAGCACHE_SCAN_PATHS "/"
323#endif
324
319#ifdef HAVE_TOUCHSCREEN 325#ifdef HAVE_TOUCHSCREEN
320 326
321static const char* list_pad_formatter(char *buffer, size_t buffer_size, 327static const char* list_pad_formatter(char *buffer, size_t buffer_size,
@@ -1355,6 +1361,8 @@ const struct settings_list settings[] = {
1355 1361
1356 OFFON_SETTING(0, runtimedb, LANG_RUNTIMEDB_ACTIVE, false, 1362 OFFON_SETTING(0, runtimedb, LANG_RUNTIMEDB_ACTIVE, false,
1357 "gather runtime data", NULL), 1363 "gather runtime data", NULL),
1364 TEXT_SETTING(0, tagcache_scan_paths, "database scan paths",
1365 DEFAULT_TAGCACHE_SCAN_PATHS, NULL, NULL),
1358#endif 1366#endif
1359 1367
1360#if CONFIG_CODEC == SWCODEC 1368#if CONFIG_CODEC == SWCODEC