Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/DMNetworksViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -387,15 +387,15 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
if (kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iOS_7_0)
image = [_UIImageWithName(@"UIPreferencesBlueCheck.png") imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
else
image = [UIImage imageNamed:@"BlueCheck" inBundle:_airPortSettingsBundle];
image = [UIImage imageNamed:[_airPortSettingsBundle pathForResource:@"BlueCheck" ofType:@"png"]];

[[cell imageView] setImage:image];
[[cell textLabel] setTextColor:[UIColor tableCellValue1BlueColor]];

if (_spinner)
[_spinner removeFromSuperview];
} else {
[[cell imageView] setImage:[UIImage imageNamed:@"spacer" inBundle:_airPortSettingsBundle]];
[[cell imageView] setImage:[UIImage imageNamed:[_airPortSettingsBundle pathForResource:@"spacer" ofType:@"png"]]];
[[cell textLabel] setTextColor:[UIColor blackColor]];

if ([network isAssociating]) {
Expand Down