Fixed another warning in TabletAddressDialog.qml

(cherry picked from commit 73c923bb522ad711380a2fcdaa9babe9f01a639a)
This commit is contained in:
Vladyslav Stelmakhovskyi 2017-03-31 15:25:53 +02:00
parent 9e96888534
commit 156166ce4a

View file

@ -25,8 +25,8 @@ StackView {
HifiConstants { id: hifi }
HifiStyles.HifiConstants { id: hifiStyleConstants }
initialItem: addressBarDialog
width: parent.width
height: parent.height
width: parent !== null ? parent.width : undefined
height: parent !== null ? parent.height : undefined
property var eventBridge;
property var allStories: [];
property int cardWidth: 460;
@ -142,7 +142,9 @@ StackView {
anchors {
top: navBar.bottom
right: parent.right
rightMargin: 16
left: parent.left
leftMargin: 16
}
property int inputAreaHeight: 70