Skip to content

Commit 4704855

Browse files
committed
Merge branch 'master' of github.com:nativescript-community/ui-material-components
2 parents 4e1b527 + c063029 commit 4704855

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bottom-navigation/index.ios.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,12 +690,13 @@ export class BottomNavigation extends TabNavigationBase {
690690
}
691691
const iconTag = [iconSource, font.fontStyle, font.fontWeight, font.fontSize, font.fontFamily, color].join(';');
692692

693-
const isFontIcon = false;
693+
let isFontIcon = false;
694694
let image: UIImage = this.mIconsCache[iconTag];
695695
if (!image) {
696696
let is: ImageSource | ImageAsset;
697697
if (typeof iconSource === 'string') {
698698
if (Utils.isFontIconURI(iconSource)) {
699+
isFontIcon = true;
699700
const fontIconCode = iconSource.split('//')[1];
700701
const target = tabStripItem.image ? tabStripItem.image : tabStripItem;
701702
const font = target.style.fontInternal;

0 commit comments

Comments
 (0)