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: page.description
wrapMode: Text.WordWrap
verticalAlignment: Text.AlignVCenter
font.pixelSize: 46
font.fontSize: 0.768 * 46
}
BarButton {
@ -53,7 +53,7 @@ Item {
y: 0
width: 300
height: 60
fontSize: 46
fontSize: 0.768 * 46
text: page.state == "description_edit" ? "Assign" : "Description"
onButtonClick: { if (page.state == "description_edit") page.state = "normal"; else page.state = "description_edit"; }
}
@ -86,7 +86,7 @@ Item {
color: "#ffffff"
text: "Money Amount:"
verticalAlignment: Text.AlignVCenter
font.pixelSize: 46
font.fontSize: 0.768 * 46
}
Text {
@ -99,7 +99,7 @@ Item {
text: amount
horizontalAlignment: Text.AlignRight
verticalAlignment: Text.AlignVCenter
font.pixelSize: 46
font.fontSize: 0.768 * 46
}
BarButton {
@ -108,7 +108,7 @@ Item {
y: 0
width: 240
height: 60
fontSize: 46
fontSize: 0.768 * 46
text: page.state == "amount_edit" ? "Assign" : "Edit"
onButtonClick: { if (page.state == "amount_edit") page.state = "normal"; else page.state = "amount_edit"; }
}
@ -144,7 +144,7 @@ Item {
text: "This is for cashing in small brmlab expenses.\nWrite the current date on the receipt and put it to the money box.\nDo not forget to announce this on a meetup and add it to the [[newz]].\nFor restocking brmbar items, please go to the Management view instead."
wrapMode: Text.WordWrap
horizontalAlignment: Text.AlignHCenter
font.pixelSize: 27
font.fontSize: 0.768 * 27
}
BarButton {