diff --git a/Provenance/Utilities/PVLogViewController.m b/Provenance/Utilities/PVLogViewController.m index cbd64451f2..8c0445dbd3 100644 --- a/Provenance/Utilities/PVLogViewController.m +++ b/Provenance/Utilities/PVLogViewController.m @@ -48,10 +48,12 @@ - (instancetype)init UITableView *tableView = [[UITableView alloc] init]; tableView.delegate = self; tableView.dataSource = self; - tableView.backgroundColor = [UIColor systemBackgroundColor]; tableView.opaque = YES; #if TARGET_OS_IOS + tableView.backgroundColor = [UIColor systemBackgroundColor]; tableView.separatorStyle = UITableViewCellSeparatorStyleNone; +#elif TARGET_OS_TV + tableView.backgroundColor = [UIColor blackColor]; #endif tableView.indicatorStyle = UIScrollViewIndicatorStyleWhite; [tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"LogCell"];