fix: missing recent tab

This commit is contained in:
ismailnurudeen 2023-03-09 13:01:57 +01:00
parent 5f24de65a2
commit ed25ad62c0
2 changed files with 4 additions and 1 deletions

View File

@ -62,7 +62,7 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:1f50049630'
implementation 'com.github.SimpleMobileTools:Simple-Commons:8de9887b36'
implementation 'com.github.tibbi:IndicatorFastScroll:4524cd0b61'
implementation 'me.grantland:autofittextview:0.2.1'
}

View File

@ -34,6 +34,9 @@ class Config(context: Context) : BaseConfig(context) {
fun removeCustomSIM(number: String) {
prefs.edit().remove(REMEMBER_SIM_PREFIX + number).apply()
}
var showTabs: Int
get() = prefs.getInt(SHOW_TABS, ALL_TABS_MASK)
set(showTabs) = prefs.edit().putInt(SHOW_TABS, showTabs).apply()
var groupSubsequentCalls: Boolean
get() = prefs.getBoolean(GROUP_SUBSEQUENT_CALLS, true)