[ios] Fix some navigation bar buttons for iOS 26

Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
This commit is contained in:
Yannik Bloscheck
2025-09-04 13:12:19 +02:00
committed by Yannik Bloscheck
parent d541cfbf02
commit 2b430c625a
2 changed files with 2 additions and 6 deletions

View File

@@ -80,7 +80,7 @@ class DownloadMapsViewController: MWMViewController {
tableView.registerNib(cell: MWMMapDownloaderButtonTableViewCell.self)
title = dataSource.title
if mode == .downloaded {
let addMapsButton = button(with: UIImage(named: "ic_nav_bar_add"), action: #selector(onAddMaps))
let addMapsButton = button(with: UIImage(systemName: "plus"), action: #selector(onAddMaps))
navigationItem.rightBarButtonItem = addMapsButton
}
noMapsContainer.isHidden = !dataSource.isEmpty || Storage.shared().downloadInProgress()