mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-14 00:47:17 +02:00
HMD: Make the 2 buttons visible without scrolling
HMD: Make the 2 buttons visible without scrolling In HMD, the 2 buttons: - Open This Domain's Asset Server - Import Entities (.json) were not visible without scrolling. people would not even notice their presence This fix adjust the spacing and the margin to have the entities button on 2 rows when the UI is in landscape mode this way the button are visible.
This commit is contained in:
parent
c2064eed89
commit
5047cf338f
1 changed files with 9 additions and 9 deletions
|
@ -55,18 +55,18 @@ TabBar {
|
|||
font.pixelSize: 14
|
||||
font.bold: true
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: 28
|
||||
anchors.topMargin: 30
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: 28
|
||||
anchors.leftMargin: 30
|
||||
}
|
||||
|
||||
Flow {
|
||||
id: createEntitiesFlow
|
||||
spacing: 35
|
||||
spacing: 20
|
||||
anchors.right: parent.right
|
||||
anchors.rightMargin: 55
|
||||
anchors.rightMargin: 30
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: 55
|
||||
anchors.leftMargin: 30
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: 70
|
||||
|
||||
|
@ -186,9 +186,9 @@ TabBar {
|
|||
color: hifi.buttons.black
|
||||
colorScheme: hifi.colorSchemes.dark
|
||||
anchors.right: parent.right
|
||||
anchors.rightMargin: 55
|
||||
anchors.rightMargin: 30
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: 55
|
||||
anchors.leftMargin: 30
|
||||
anchors.top: createEntitiesFlow.bottom
|
||||
anchors.topMargin: 35
|
||||
onClicked: {
|
||||
|
@ -205,9 +205,9 @@ TabBar {
|
|||
color: hifi.buttons.black
|
||||
colorScheme: hifi.colorSchemes.dark
|
||||
anchors.right: parent.right
|
||||
anchors.rightMargin: 55
|
||||
anchors.rightMargin: 30
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: 55
|
||||
anchors.leftMargin: 30
|
||||
anchors.top: assetServerButton.bottom
|
||||
anchors.topMargin: 20
|
||||
onClicked: {
|
||||
|
|
Loading…
Reference in a new issue