Load 30 recent calls by default

This commit is contained in:
xynngh 2020-09-28 14:11:44 +04:00
parent 6d4743556c
commit 52704b4dc8
2 changed files with 2 additions and 2 deletions

View File

@ -170,7 +170,7 @@ public class Settings extends GenericSettings {
}
public int getNumberOfRecentCalls() {
return getInt(PREF_NUMBER_OF_RECENT_CALLS, 20);
return getInt(PREF_NUMBER_OF_RECENT_CALLS, 30);
}
public void setNumberOfRecentCalls(int number) {

View File

@ -30,7 +30,7 @@
app:title="@string/recent_calls_grouping"
app:useSimpleSummaryProvider="true" />
<dummydomain.yetanothercallblocker.preference.IntEditTextPreference
app:defaultValue="20"
app:defaultValue="30"
app:key="numberOfRecentCalls"
app:summary="@string/number_of_recent_calls_summary"
app:title="@string/number_of_recent_calls" />