From 1c45766b961c01797a0faed450b1ad411040d345 Mon Sep 17 00:00:00 2001 From: Bob Sun Date: Mon, 27 Feb 2017 17:37:53 +0800 Subject: [PATCH] Use gray instead of lightGray to show last updated time --- pass/Controllers/PasswordDetailTableViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pass/Controllers/PasswordDetailTableViewController.swift b/pass/Controllers/PasswordDetailTableViewController.swift index 3012e87..7272ee7 100644 --- a/pass/Controllers/PasswordDetailTableViewController.swift +++ b/pass/Controllers/PasswordDetailTableViewController.swift @@ -256,9 +256,9 @@ class PasswordDetailTableViewController: UITableViewController, UIGestureRecogni let footerLabel = UILabel(frame: CGRect(x: 15, y: 15, width: tableView.frame.width, height: 60)) footerLabel.numberOfLines = 0 footerLabel.font = UIFont.preferredFont(forTextStyle: .footnote) - footerLabel.textColor = UIColor.lightGray + footerLabel.textColor = UIColor.gray let dateString = PasswordStore.shared.getLatestCommitDate(filename: (passwordEntity?.rawPath)!) - footerLabel.text = "Latest commit: \(dateString ?? "Unknown")" + footerLabel.text = "Last Updated: \(dateString ?? "Unknown")" view.addSubview(footerLabel) return view }