fix(StatusAppNavBar): don't try to render chat button if it doesn't exist

This commit is contained in:
Pascal Precht 2021-05-27 18:56:17 +02:00 committed by Pascal Precht
parent 98b019463d
commit d690a0c505
1 changed files with 3 additions and 2 deletions

View File

@ -47,8 +47,9 @@ Rectangle {
anchors.top: parent.top anchors.top: parent.top
anchors.topMargin: 48 anchors.topMargin: 48
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
height: statusAppNavBar.navBarChatButton.height height: visible ? statusAppNavBar.navBarChatButton.height : 0
width: statusAppNavBar.navBarChatButton.width width: visible ? statusAppNavBar.navBarChatButton.width : 0
visible: !!statusAppNavBar.navBarChatButton
} }
Rectangle { Rectangle {