1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-09-01 01:51:58 +02:00

multiply instead of add

This commit is contained in:
Michael Zanetti
2012-12-16 13:03:07 +01:00
parent c8a3ef0732
commit cc809c6391

View File

@@ -32,7 +32,7 @@ Rectangle {
property bool showSaveButton: false property bool showSaveButton: false
// Layout spacing // Layout spacing
property int spacing: defaultFontHeight / 2 property int spacing: defaultFontHeight * 0.5
signal backPressed() signal backPressed()
signal nextPressed() signal nextPressed()
@@ -104,7 +104,7 @@ Rectangle {
anchors.left: parent.left anchors.left: parent.left
anchors.top: parent.top anchors.top: parent.top
font.pointSize: defaultFontSize + 4 font.pointSize: defaultFontSize * 1.5
font.bold: true font.bold: true
width: parent.width width: parent.width
elide: Text.ElideRight elide: Text.ElideRight
@@ -115,7 +115,7 @@ Rectangle {
anchors.left: parent.left anchors.left: parent.left
anchors.top: parent.top anchors.top: parent.top
anchors.topMargin: -height * 2 anchors.topMargin: -height * 2
font.pointSize: defaultFontSize + 4 font.pointSize: defaultFontSize * 1.5
font.bold: true font.bold: true
width: parent.width width: parent.width
elide: Text.ElideRight elide: Text.ElideRight
@@ -125,7 +125,7 @@ Rectangle {
Text { Text {
id: subtitleText id: subtitleText
color: "white" color: "white"
font.pointSize: defaultFontSize + 1 font.pointSize: defaultFontSize * 1.2
width: parent.width width: parent.width
elide: Text.ElideRight elide: Text.ElideRight
} }