feat: Add "Show related DMs in spaces" settings
This commit is contained in:
parent
cef13412fb
commit
4398c305d2
6 changed files with 20 additions and 1 deletions
|
|
@ -480,6 +480,10 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
|
|||
store
|
||||
.getItemBool(SettingKeys.hideUnknownEvents, AppConfig.hideUnknownEvents)
|
||||
.then((value) => AppConfig.hideUnknownEvents = value);
|
||||
store
|
||||
.getItemBool(SettingKeys.showDirectChatsInSpaces,
|
||||
AppConfig.showDirectChatsInSpaces)
|
||||
.then((value) => AppConfig.showDirectChatsInSpaces = value);
|
||||
store
|
||||
.getItemBool(SettingKeys.separateChatTypes, AppConfig.separateChatTypes)
|
||||
.then((value) => AppConfig.separateChatTypes = value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue