From a3cfbd72e28b3015665beb11c67819a18bcfe8bb Mon Sep 17 00:00:00 2001 From: Arun Kumar Chintakrinda Date: Mon, 21 Oct 2024 10:05:07 +0530 Subject: [PATCH] New bookmark image --- MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m | 2 +- MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m index 04ea067..37728ef 100644 --- a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m +++ b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m @@ -480,7 +480,7 @@ NSMutableDictionary *patterns = [NSMutableDictionary dictionaryWithDictionary:[tempModules dict: @"navigationPatterns"]]; NSMutableDictionary *patternA = [NSMutableDictionary dictionaryWithDictionary:[patterns dict:@"A"]]; NSMutableArray *additionalRightButtons = [NSMutableArray arrayWithArray:[patternA arrayForKey:@"additionalRightButtons"]]; - [additionalRightButtons insertObject:@{@"accessibilityText" : @"Bookmarks", @"moleculeName" : @"navigationImageButton", @"image" : @"star.fill", @"action" : @{ + [additionalRightButtons insertObject:@{@"accessibilityText" : @"Bookmarks", @"moleculeName" : @"navigationImageButton", @"image" : @"bookmark_filled", @"action" : @{ @"analyticsData" : @{ @"vzdl.page.linkName" : @"global monarch nav: vz icon" }, diff --git a/MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m b/MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m index 73bfbb7..3845226 100644 --- a/MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m +++ b/MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m @@ -518,11 +518,7 @@ static NSString * const STATIC_CACHE_COMPONENT = @"StaticCache.txt"; } } }); - - if (!image) { - image = [UIImage systemImageNamed:imageName]; - } - + return image; }