Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ void UpdateTabBarHidden()
if (OperatingSystem.IsMacCatalystVersionAtLeast(18) || OperatingSystem.IsIOSVersionAtLeast(18))
{
#if MACCATALYST
if (TabBar != null && TabBar.Hidden != !ShellItemController.ShowTabs)
if (TabBar != null && (TabBar.Hidden != !ShellItemController.ShowTabs || TabBar.Alpha != 1.0f))
{
// Root Cause: On MacCatalyst 18+, DisableiOS18ToolbarTabs() sets Mode = TabSidebar
// which causes iOS to set TabBar.Hidden = true and Alpha = 0 by the system.
Expand Down
Loading