fix(StatusAppNavBar): don't try to render chat button if it doesn't exist
This commit is contained in:
parent
6c1cb965eb
commit
39f8eae65b
|
@ -47,8 +47,9 @@ Rectangle {
|
|||
anchors.top: parent.top
|
||||
anchors.topMargin: 48
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
height: statusAppNavBar.navBarChatButton.height
|
||||
width: statusAppNavBar.navBarChatButton.width
|
||||
height: visible ? statusAppNavBar.navBarChatButton.height : 0
|
||||
width: visible ? statusAppNavBar.navBarChatButton.width : 0
|
||||
visible: !!statusAppNavBar.navBarChatButton
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
|
Loading…
Reference in New Issue