mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-08 23:36:47 +02:00
Fixed another warning in TabletAddressDialog.qml
(cherry picked from commit 73c923bb522ad711380a2fcdaa9babe9f01a639a)
This commit is contained in:
parent
9e96888534
commit
156166ce4a
1 changed files with 4 additions and 2 deletions
|
@ -25,8 +25,8 @@ StackView {
|
||||||
HifiConstants { id: hifi }
|
HifiConstants { id: hifi }
|
||||||
HifiStyles.HifiConstants { id: hifiStyleConstants }
|
HifiStyles.HifiConstants { id: hifiStyleConstants }
|
||||||
initialItem: addressBarDialog
|
initialItem: addressBarDialog
|
||||||
width: parent.width
|
width: parent !== null ? parent.width : undefined
|
||||||
height: parent.height
|
height: parent !== null ? parent.height : undefined
|
||||||
property var eventBridge;
|
property var eventBridge;
|
||||||
property var allStories: [];
|
property var allStories: [];
|
||||||
property int cardWidth: 460;
|
property int cardWidth: 460;
|
||||||
|
@ -142,7 +142,9 @@ StackView {
|
||||||
anchors {
|
anchors {
|
||||||
top: navBar.bottom
|
top: navBar.bottom
|
||||||
right: parent.right
|
right: parent.right
|
||||||
|
rightMargin: 16
|
||||||
left: parent.left
|
left: parent.left
|
||||||
|
leftMargin: 16
|
||||||
}
|
}
|
||||||
|
|
||||||
property int inputAreaHeight: 70
|
property int inputAreaHeight: 70
|
||||||
|
|
Loading…
Reference in a new issue