add new setting themeImages and fix default themeing #542

Merged
dan merged 1 commits from settings into master 2024-01-06 20:05:54 +00:00
1 changed files with 4 additions and 1 deletions

View File

@ -35,6 +35,7 @@ type GlobalSettings struct {
Locale string
Theme string
ThemeMode string
ThemeImages bool
PreviousPid int64
ExperimentsEnabled bool
Experiments map[string]bool
@ -62,7 +63,9 @@ type GlobalSettings struct {
var DefaultGlobalSettings = GlobalSettings{
Locale: "en",
Theme: "dark",
Theme: "cwtch",
ThemeMode: "dark",
ThemeImages: false,
PreviousPid: -1,
ExperimentsEnabled: false,
Experiments: map[string]bool{constants.MessageFormattingExperiment: true},