nonappcompat check if MDP Icon is null (#7162)

fixes #6958
This commit is contained in:
Shane Neuville 2019-08-15 16:37:52 -06:00 коммит произвёл Samantha Houts
Родитель 5bc0e5ab0a
Коммит ddddd19e19
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -574,7 +574,7 @@ namespace Xamarin.Forms.Platform.Android
ClearMasterDetailToggle();
return;
}
if (!CurrentMasterDetailPage.ShouldShowToolbarButton() || CurrentMasterDetailPage.Master.IconImageSource.IsEmpty ||
if (!CurrentMasterDetailPage.ShouldShowToolbarButton() || (CurrentMasterDetailPage.Master.IconImageSource?.IsEmpty ?? true) ||
(MasterDetailPageController.ShouldShowSplitMode && CurrentMasterDetailPage.IsPresented))
{
//clear out existing icon;