Minor spelling mistake
This commit is contained in:
maexsp 2019-10-08 13:11:44 +02:00 коммит произвёл Gerald Versluis
Родитель b3b9c96b0d
Коммит 6ba52f79b5
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -320,7 +320,7 @@ namespace Xamarin.Forms.Platform.UWP
IVisualElementRenderer renderer = _detail.GetOrCreateRenderer(); IVisualElementRenderer renderer = _detail.GetOrCreateRenderer();
element = renderer.ContainerElement; element = renderer.ContainerElement;
UpdateToolbarVisibilty(); UpdateToolbarVisibility();
} }
Control.Detail = element; Control.Detail = element;
@ -388,7 +388,7 @@ namespace Xamarin.Forms.Platform.UWP
Control.Master = element; Control.Master = element;
Control.MasterTitle = _master?.Title; Control.MasterTitle = _master?.Title;
UpdateToolbarVisibilty(); UpdateToolbarVisibility();
} }
void UpdateMode() void UpdateMode()
@ -411,7 +411,7 @@ namespace Xamarin.Forms.Platform.UWP
Control.ToolbarDynamicOverflowEnabled = Element.OnThisPlatform().GetToolbarDynamicOverflowEnabled(); Control.ToolbarDynamicOverflowEnabled = Element.OnThisPlatform().GetToolbarDynamicOverflowEnabled();
} }
void UpdateToolbarVisibilty() void UpdateToolbarVisibility()
{ {
// Enforce consistency rules on toolbar // Enforce consistency rules on toolbar
Control.ShouldShowToolbar = _detail is NavigationPage || _master is NavigationPage; Control.ShouldShowToolbar = _detail is NavigationPage || _master is NavigationPage;