diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-03-22 21:15:22 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-03-22 21:15:22 +0000 |
| commit | 0897753d3b821531fef6f286eeac6af82ac505ff (patch) | |
| tree | ff5749933ffeb8035aa65274241f7509e95f2089 /apps | |
| parent | 671127c65de3b93e3cbce6161ca748ecb388688d (diff) | |
| download | rockbox-0897753d3b821531fef6f286eeac6af82ac505ff.zip rockbox-0897753d3b821531fef6f286eeac6af82ac505ff.tar.gz rockbox-0897753d3b821531fef6f286eeac6af82ac505ff.tar.bz2 rockbox-0897753d3b821531fef6f286eeac6af82ac505ff.tar.xz | |
Submit parts of FS#12024. Describe the settings 'List Acceleration Start Delay' and 'List Acceleration Speed' in the manual. Correct the unit (seconds) for the first setting and change the text for the second setting.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29634 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index 2d73028..7f2cf38 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -368,7 +368,7 @@ static const char* scanaccel_formatter(char *buffer, size_t buffer_size, if (val == 0) return str(LANG_OFF); else - snprintf(buffer, buffer_size, "2x/%ds", val); + snprintf(buffer, buffer_size, "Speed up every %ds", val); return buffer; } #endif @@ -1694,7 +1694,7 @@ const struct settings_list settings[] = { #endif #ifndef HAVE_WHEEL_ACCELERATION INT_SETTING(0, list_accel_start_delay, LANG_LISTACCEL_START_DELAY, - 2, "list_accel_start_delay", UNIT_MS, 0, 10, 1, + 2, "list_accel_start_delay", UNIT_SEC, 0, 10, 1, formatter_unit_0_is_off, getlang_unit_0_is_off, NULL), INT_SETTING(0, list_accel_wait, LANG_LISTACCEL_ACCEL_SPEED, 3, "list_accel_wait", UNIT_SEC, 1, 10, 1, |