[GTK] Fix navigation bar visibility updates (#3651)
This commit is contained in:
Родитель
ea7a5185ec
Коммит
11bbc6abc9
|
@ -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()
|
||||
|
|
Загрузка…
Ссылка в новой задаче