feat: option to not send typing notifications
This commit is contained in:
parent
4bb3434519
commit
57b026b913
6 changed files with 36 additions and 13 deletions
|
|
@ -489,6 +489,12 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
|
|||
store
|
||||
.getItemBool(SettingKeys.autoplayImages, AppConfig.autoplayImages)
|
||||
.then((value) => AppConfig.autoplayImages = value);
|
||||
store
|
||||
.getItemBool(
|
||||
SettingKeys.sendTypingNotifications,
|
||||
AppConfig.sendTypingNotifications,
|
||||
)
|
||||
.then((value) => AppConfig.sendTypingNotifications = value);
|
||||
store
|
||||
.getItemBool(SettingKeys.sendOnEnter, AppConfig.sendOnEnter)
|
||||
.then((value) => AppConfig.sendOnEnter = value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue