Make extractor buttons higher animation while animating. Issue #1705

This commit is contained in:
Maurice Parker
2020-01-26 22:32:18 -07:00
parent 25daea8a9f
commit 72e886b709
2 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ struct AppAssets {
static var articleExtractorOffTinted: UIImage = {
let image = UIImage(named: "articleExtractorOff")!
return image.maskWithColor(color: AppAssets.primaryAccentColor.cgColor)!
return image.tinted(color: AppAssets.primaryAccentColor)!
}()
static var articleExtractorOn: UIImage = {
@@ -62,7 +62,7 @@ struct AppAssets {
static var articleExtractorOnTinted: UIImage = {
let image = UIImage(named: "articleExtractorOn")!
return image.maskWithColor(color: AppAssets.primaryAccentColor.cgColor)!
return image.tinted(color: AppAssets.primaryAccentColor)!
}()
static var iconBackgroundColor: UIColor = {