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
This commit is contained in:
Anderson Mesquita 2019-07-14 13:26:31 -04:00
parent fb294315a9
commit 6a804525f3
1 changed files with 1 additions and 1 deletions

View File

@ -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() {