From 2b614c952e37500b6fe415b8fdf04ef63909e2bc Mon Sep 17 00:00:00 2001 From: meancoot Date: Wed, 14 Aug 2013 17:38:32 -0400 Subject: [PATCH] (iOS) Put the file icon back; the file lists look odd with just a directory icon --- apple/iOS/browser.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/iOS/browser.m b/apple/iOS/browser.m index 5f70ed1d9a..62b2808745 100644 --- a/apple/iOS/browser.m +++ b/apple/iOS/browser.m @@ -155,7 +155,7 @@ cell.imageView.image = [UIImage imageNamed:@"ic_dir"]; cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; } else { - cell.imageView.image = nil; + cell.imageView.image = [UIImage imageNamed:@"ic_file"]; cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton; }