brmbarv3: Resize all texts by a horrible hack

This commit is contained in:
Petr Baudis 2012-10-16 23:32:50 +02:00
parent 0b43a93c0d
commit bab3dd376a
16 changed files with 58 additions and 58 deletions

View file

@ -44,7 +44,7 @@ Item {
text: modelData.name
anchors.verticalCenter: parent.verticalCenter
color: "#ffffff"
font.pixelSize: 46
font.fontSize: 0.768 * 46
}
Text {
@ -54,7 +54,7 @@ Item {
color: "#ffff7c"
text: modelData.price
horizontalAlignment: Text.AlignRight
font.pixelSize: 46
font.fontSize: 0.768 * 46
}
BarButton {
@ -63,7 +63,7 @@ Item {
width: 240
height: 68
text: "Edit"
fontSize: 46
fontSize: 0.768 * 46
onButtonClick: {
loadPage("ItemEdit", { dbid: modelData.id })
}
@ -86,7 +86,7 @@ Item {
y: 582
width: 360
text: "Add Item"
fontSize: 60
fontSize: 0.768 * 60
onButtonClick: {
loadPage("ItemEdit", { dbid: "" })
}