Skip to content

Commit 0293ae4

Browse files
committed
T21323359: bottom menu bar overlaps in favorites page
1 parent 1165c0f commit 0293ae4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

iMEGA/Home/Scenes/HomeExplore/View/FilesExplorerListViewController.swift

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ class FilesExplorerListViewController: FilesExplorerViewController {
7474
}
7575

7676
audioPlayer(hidden: true)
77+
if #available(iOS 26.0, *) {
78+
tabBarController?.tabBar.alpha = 0
79+
toolbar.backgroundColor = .clear
80+
}
7781
}
7882

7983
override func endEditingMode() {
@@ -84,6 +88,9 @@ class FilesExplorerListViewController: FilesExplorerViewController {
8488
listSource?.endEditingMode()
8589

8690
audioPlayer(hidden: false)
91+
if #available(iOS 26.0, *) {
92+
tabBarController?.tabBar.alpha = 1
93+
}
8794
}
8895

8996
override func node(at location: CGPoint) -> MEGANode? {

0 commit comments

Comments
 (0)