brmbarv3: Convert font sizes from points to pixels to be DPI-independent

This commit is contained in:
Petr Baudis 2012-10-16 17:45:21 +02:00
parent 4d72dff187
commit e55f5cfa5e
15 changed files with 59 additions and 59 deletions

View file

@ -21,7 +21,7 @@ Item {
text: "Profit:"
wrapMode: Text.WordWrap
verticalAlignment: Text.AlignVCenter
font.pointSize: 34
font.pixelSize: 46
}
Text {
@ -34,7 +34,7 @@ Item {
text: parent.profit
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignRight
font.pointSize: 34
font.pixelSize: 46
}
Text {
@ -47,7 +47,7 @@ Item {
text: "Cash:"
wrapMode: Text.WordWrap
verticalAlignment: Text.AlignVCenter
font.pointSize: 34
font.pixelSize: 46
}
Text {
@ -60,7 +60,7 @@ Item {
text: parent.cash
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignRight
font.pointSize: 34
font.pixelSize: 46
}
Text {
@ -73,7 +73,7 @@ Item {
text: "Credit:"
wrapMode: Text.WordWrap
verticalAlignment: Text.AlignVCenter
font.pointSize: 34
font.pixelSize: 46
}
Text {
@ -86,7 +86,7 @@ Item {
text: parent.credit_money
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignRight
font.pointSize: 34
font.pixelSize: 46
}
Text {
@ -99,7 +99,7 @@ Item {
text: "Stock:"
wrapMode: Text.WordWrap
verticalAlignment: Text.AlignVCenter
font.pointSize: 34
font.pixelSize: 46
}
Text {
@ -112,7 +112,7 @@ Item {
text: parent.inv_money
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignRight
font.pointSize: 34
font.pixelSize: 46
}
BarButton {