From 55ab50289cd92a6bd7d122de6c8ed231ef505ddf Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 27 Jun 2019 17:56:33 -0500 Subject: [PATCH] Temporally comment out tint code because it is crashing on iPadOS 13 beta 2 --- iOS/AppAssets.swift | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/iOS/AppAssets.swift b/iOS/AppAssets.swift index c5341ce80..a46414c06 100644 --- a/iOS/AppAssets.swift +++ b/iOS/AppAssets.swift @@ -28,12 +28,14 @@ struct AppAssets { static var chevronDownImage: UIImage = { let image = UIImage(systemName: "chevron.down")! - return image.withTintColor(AppAssets.chevronDisclosureColor, renderingMode: .alwaysOriginal) + return image +// return image.withTintColor(AppAssets.chevronDisclosureColor, renderingMode: .alwaysOriginal) }() static var chevronRightImage: UIImage = { let image = UIImage(systemName: "chevron.right")! - return image.withTintColor(AppAssets.chevronDisclosureColor, renderingMode: .alwaysOriginal) + return image +// return image.withTintColor(AppAssets.chevronDisclosureColor, renderingMode: .alwaysOriginal) }() static var faviconTemplateImage: RSImage = { @@ -50,7 +52,8 @@ struct AppAssets { static var masterFolderImage: UIImage = { let image = UIImage(systemName: "folder.fill")! - return image.withTintColor(AppAssets.masterFolderColor, renderingMode: .alwaysOriginal) + return image +// return image.withTintColor(AppAssets.masterFolderColor, renderingMode: .alwaysOriginal) }() static var netNewsWireBlueColor: UIColor = { @@ -63,7 +66,8 @@ struct AppAssets { static var smartFeedImage: UIImage = { let image = UIImage(systemName: "gear")! - return image.withTintColor(AppAssets.smartFeedColor, renderingMode: .alwaysOriginal) + return image +// return image.withTintColor(AppAssets.smartFeedColor, renderingMode: .alwaysOriginal) }() static var starColor: UIColor = { @@ -80,7 +84,8 @@ struct AppAssets { static var timelineStarImage: UIImage = { let image = UIImage(systemName: "star.fill")! - return image.withTintColor(AppAssets.starColor, renderingMode: .alwaysOriginal) + return image +// return image.withTintColor(AppAssets.starColor, renderingMode: .alwaysOriginal) }() static var timelineUnreadCircleColor: UIColor = {