Skip to content

Commit

Permalink
Bug 1170856 - Fix search image alignment in default picker
Browse files Browse the repository at this point in the history
  • Loading branch information
thebnich committed Jun 3, 2015
1 parent 7389ddd commit 44123e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Client/Frontend/Settings/SearchEnginePicker.swift
Expand Up @@ -28,7 +28,7 @@ class SearchEnginePicker: UITableViewController {
let engine = engines[indexPath.item]
let cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: nil)
cell.textLabel?.text = engine.shortName
cell.imageView?.image = engine.image
cell.imageView?.image = engine.image?.createScaled(CGSize(width: OpenSearchEngine.PreferredIconSize, height: OpenSearchEngine.PreferredIconSize))
if engine.shortName == selectedSearchEngineName {
cell.accessoryType = UITableViewCellAccessoryType.Checkmark
}
Expand Down

0 comments on commit 44123e6

Please sign in to comment.