1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-19 04:52:12 +01:00

OP-1453 - Fix alignment of version text

This commit is contained in:
dwillis 2014-08-22 23:58:17 +01:00
parent 7a4964eb74
commit 657ec00d72

View File

@ -22,19 +22,6 @@ Rectangle {
width: scale*sourceSize.width
height: scale*sourceSize.height
smooth: true
Text {
id: textOpVersion
x: 258
y: 668
color: "#c4c0c0"
text: welcomePlugin.versionString
font.bold: true
styleColor: "#00000000"
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter
font.pixelSize: 14
}
}
@ -122,5 +109,18 @@ Rectangle {
width: Math.min(sourceSize.width, container.width)
height: Math.min(450, container.height*0.5)
}
Text {
id: textOpVersion
x: 328
y: 417
color: "#c4c0c0"
text: welcomePlugin.versionString
font.bold: true
styleColor: "#00000000"
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter
font.pixelSize: 14
}
}
}