add an option for showing character counter at sending messages
This commit is contained in:
parent
87e1be8e1b
commit
82f78f002e
6 changed files with 65 additions and 5 deletions
|
|
@ -13,4 +13,8 @@ class Config(context: Context) : BaseConfig(context) {
|
|||
}
|
||||
|
||||
fun getUseSIMIdAtNumber(number: String) = prefs.getInt(USE_SIM_ID_PREFIX + number, 0)
|
||||
|
||||
var showCharacterCounter: Boolean
|
||||
get() = prefs.getBoolean(SHOW_CHARACTER_COUNTER, false)
|
||||
set(showCharacterCounter) = prefs.edit().putBoolean(SHOW_CHARACTER_COUNTER, showCharacterCounter).apply()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue