mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
TabBarVisible logic fix
This commit is contained in:
parent
937ad444da
commit
c7ba465970
1 changed files with 3 additions and 1 deletions
|
@ -12,6 +12,7 @@ using System.Threading.Tasks;
|
|||
using Bit.App.Models.Page;
|
||||
using Bit.iOS.Core.Views;
|
||||
using CoreGraphics;
|
||||
using System.Linq;
|
||||
|
||||
namespace Bit.iOS.Services
|
||||
{
|
||||
|
@ -322,7 +323,8 @@ namespace Bit.iOS.Services
|
|||
private bool TabBarVisible()
|
||||
{
|
||||
var vc = GetPresentedViewController();
|
||||
return vc?.TabBarController != null && !vc.TabBarController.TabBar.Hidden;
|
||||
return vc != null && (vc is UITabBarController ||
|
||||
(vc.ChildViewControllers?.Any(c => c is UITabBarController) ?? false));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue