[GTK] Fix navigation bar visibility updates (#3651)

This commit is contained in:
Andoni Morales Alastruey 2018-08-29 18:09:02 +02:00 коммит произвёл Rui Marinho
Родитель ea7a5185ec
Коммит 11bbc6abc9
2 изменённых файлов: 3 добавлений и 0 удалений

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

@ -145,6 +145,7 @@ namespace Xamarin.Forms.Platform.GTK
{
if (e.PropertyName.Equals(NavigationPage.BarTextColorProperty.PropertyName) ||
e.PropertyName.Equals(NavigationPage.BarBackgroundColorProperty.PropertyName) ||
e.PropertyName.Equals(NavigationPage.HasNavigationBarProperty.PropertyName) ||
e.PropertyName.Equals(Page.TitleProperty.PropertyName) ||
e.PropertyName.Equals(Page.IconProperty.PropertyName))
UpdateToolBar();

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

@ -199,6 +199,8 @@ namespace Xamarin.Forms.Platform.GTK.Renderers
UpdateBackButtonIcon();
else if (e.PropertyName == NavigationPage.CurrentPageProperty.PropertyName)
UpdateCurrentPage();
else if (e.PropertyName == NavigationPage.HasNavigationBarProperty.PropertyName)
UpdateToolBar();
}
private void Init()