Make the reader view button have a larger hitbox

This commit is contained in:
Maurice Parker 2019-09-27 17:32:13 -05:00
parent da4715c6d1
commit 17c33b75e9
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ class ArticleViewController: UIViewController {
private var articleExtractorButton: ArticleExtractorButton = {
let button = ArticleExtractorButton(type: .system)
button.frame = CGRect(x: 0, y: 0, width: 44.0, height: 44.0)
button.setImage(AppAssets.articleExtractorOff, for: .normal)
return button
}()