Updated timeline to default to 3 lines for the title. Issue #694

This commit is contained in:
Phil Viso 2019-05-27 17:38:43 -05:00
parent c7b61f7d87
commit 092b72d44c
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ struct AppDefaults {
}
static func registerDefaults() {
let defaults: [String : Any] = [Key.timelineSortDirection: ComparisonResult.orderedDescending.rawValue, Key.refreshInterval: RefreshInterval.everyHour.rawValue, Key.timelineNumberOfLines: 2]
let defaults: [String : Any] = [Key.timelineSortDirection: ComparisonResult.orderedDescending.rawValue, Key.refreshInterval: RefreshInterval.everyHour.rawValue, Key.timelineNumberOfLines: 3]
UserDefaults.standard.register(defaults: defaults)
}