Make the "show inline images as attachments" optional and cleanup localization data

This commit is contained in:
the-djmaze 2022-10-03 20:15:12 +02:00
parent 02eb5ad4e8
commit a51f86ae28
45 changed files with 1006 additions and 1251 deletions

View file

@ -19,6 +19,7 @@ export const SettingsUserStore = new class {
viewHTML: 1,
showImages: 0,
removeColors: 0,
listInlineAttachments: 0,
useCheckboxesInList: 1,
allowDraftAutosave: 1,
useThreads: 0,
@ -78,6 +79,7 @@ export const SettingsUserStore = new class {
self.viewHTML(SettingsGet('ViewHTML'));
self.showImages(SettingsGet('ShowImages'));
self.removeColors(SettingsGet('RemoveColors'));
self.listInlineAttachments(SettingsGet('ListInlineAttachments'));
self.useCheckboxesInList(SettingsGet('UseCheckboxesInList'));
self.allowDraftAutosave(SettingsGet('AllowDraftAutosave'));
self.useThreads(SettingsGet('UseThreads'));