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

@ -45,7 +45,7 @@ Item {
text: modelData.name
anchors.verticalCenter: parent.verticalCenter
color: "#ffffff"
font.pointSize: 34
font.pixelSize: 46
}
Text {
@ -55,7 +55,7 @@ Item {
color: "#ffff7c"
text: modelData.negbalance_str
horizontalAlignment: Text.AlignRight
font.pointSize: 34
font.pixelSize: 46
}
BarButton {
@ -64,7 +64,7 @@ Item {
width: 240
height: 68
text: "Withdraw"
fontSize: 34
fontSize: 46
onButtonClick: {
loadPage("Withdraw", { username: modelData.name, userdbid: modelData.id })
}
@ -87,7 +87,7 @@ Item {
y: 582
width: 360
text: "Add User"
fontSize: 44
fontSize: 60
btnColor: "#666666"
}