diff options
author | Anderson Mesquita <andersonvom@gmail.com> | 2019-07-14 13:26:31 -0400 |
---|---|---|
committer | Anderson Mesquita <andersonvom@gmail.com> | 2019-07-14 13:29:24 -0400 |
commit | 6a804525f32821c637d33708ea8b1a254821b8c7 (patch) | |
tree | 24c9b9be4130ee552d1a5da758ade7c07438a7a7 /core/src | |
parent | fb294315a92669c8f93065015436e7b79d027cf1 (diff) | |
download | AntennaPod-6a804525f32821c637d33708ea8b1a254821b8c7.zip |
Change default rewind time to 10s
This allows the user to better search through an episode, by allowing
them to rewind less than what was just forwarded. It is also aligned
with how other apps out there behave.
Closes: #3262
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main/java/de/danoeh/antennapod/core/preferences/UserPreferences.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/java/de/danoeh/antennapod/core/preferences/UserPreferences.java b/core/src/main/java/de/danoeh/antennapod/core/preferences/UserPreferences.java index cc31736bc..817758545 100644 --- a/core/src/main/java/de/danoeh/antennapod/core/preferences/UserPreferences.java +++ b/core/src/main/java/de/danoeh/antennapod/core/preferences/UserPreferences.java @@ -443,7 +443,7 @@ public class UserPreferences { } public static int getRewindSecs() { - return prefs.getInt(PREF_REWIND_SECS, 30); + return prefs.getInt(PREF_REWIND_SECS, 10); } public static String[] getAutodownloadSelectedNetworks() { |