Make MessageList per day optional #737

This commit is contained in:
the-djmaze 2022-12-23 08:42:36 +01:00
parent 81e46ccdf7
commit fca7e44aa0
46 changed files with 114 additions and 40 deletions

View file

@ -21,6 +21,7 @@ export const SettingsUserStore = new class {
listInlineAttachments: 0,
simpleAttachmentsList: 0,
useCheckboxesInList: 1,
listPerDay: 1,
allowDraftAutosave: 1,
useThreads: 0,
replySameFolder: 0,
@ -84,6 +85,7 @@ export const SettingsUserStore = new class {
self.listInlineAttachments(SettingsGet('ListInlineAttachments'));
self.simpleAttachmentsList(SettingsGet('simpleAttachmentsList'));
self.useCheckboxesInList(SettingsGet('UseCheckboxesInList'));
self.listPerDay(SettingsGet('listPerDay'));
self.allowDraftAutosave(SettingsGet('AllowDraftAutosave'));
self.useThreads(SettingsGet('UseThreads'));
self.replySameFolder(SettingsGet('ReplySameFolder'));