Skip to content

Commit

Permalink
Change folder icon to use always the same image
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioEstevao committed Oct 30, 2024
1 parent 3fcbcd6 commit e94fbdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podcasts/PodcastListViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class PodcastListViewController: PCViewController, UIGestureRecognizerDelegate,
}

private func updateNavigationButtons() {
let folderImage = SubscriptionHelper.hasActiveSubscription() ? UIImage(named: "folder-create") : UIImage(named: AppTheme.folderLockedImageName())
let folderImage = UIImage(named: "folder-create")
let folderButton = UIBarButtonItem(image: folderImage, style: .plain, target: self, action: #selector(createFolderTapped(_:)))
folderButton.accessibilityLabel = L10n.folderCreateNew
navigationItem.leftBarButtonItem = folderButton
Expand Down

0 comments on commit e94fbdc

Please sign in to comment.