Skip to content

Commit

Permalink
Update TabbedPageManager.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
PureWeen committed Feb 22, 2024
1 parent f39ae86 commit 0af66f1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Controls/src/Core/Platform/Android/TabbedPageManager.cs
Expand Up @@ -641,9 +641,7 @@ protected virtual ColorStateList GetItemIconTintColorState()
var defaultColors = styledAttributes.GetColorStateList(Resource.Styleable.NavigationBarView_itemIconTint);
if (defaultColors is not null)
{
defaultColor = defaultColors.DefaultColor;
var light = (int)new Color(0, 0, 0, 0.6f).ToPlatform();
var dark = (int)new Color(1, 1, 1, 0.6f).ToPlatform();
defaultColor = defaultColors.DefaultColor;
}
else
{
Expand Down Expand Up @@ -941,4 +939,4 @@ void TabLayout.IOnTabSelectedListener.OnTabUnselected(TabLayout.Tab tab)
}
}
}
}
}

0 comments on commit 0af66f1

Please sign in to comment.