Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9f0c032f authored by Romain Hunault's avatar Romain Hunault
Browse files

Set default "avoid whats new" setting to true

parent caed9e67
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ open class BaseConfig(val context: Context) {
        set(lastConflictResolution) = prefs.edit().putInt(LAST_CONFLICT_RESOLUTION, lastConflictResolution).apply()

    var avoidWhatsNew: Boolean
        get() = prefs.getBoolean(AVOID_WHATS_NEW, false)
        get() = prefs.getBoolean(AVOID_WHATS_NEW, true)
        set(avoidWhatsNew) = prefs.edit().putBoolean(AVOID_WHATS_NEW, avoidWhatsNew).apply()

    var sorting: Int