export past events too by default

This commit is contained in:
tibbi 2023-03-06 00:01:08 +01:00
parent ca120d0625
commit 9e9bc0a7ee
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ class Config(context: Context) : BaseConfig(context) {
set(exportTasks) = prefs.edit().putBoolean(EXPORT_TASKS, exportTasks).apply()
var exportPastEntries: Boolean
get() = prefs.getBoolean(EXPORT_PAST_EVENTS, false)
get() = prefs.getBoolean(EXPORT_PAST_EVENTS, true)
set(exportPastEvents) = prefs.edit().putBoolean(EXPORT_PAST_EVENTS, exportPastEvents).apply()
var weeklyViewItemHeightMultiplier: Float