WelcomeScreen: Don't use bold label text and exclamation marks.

It doesn't fit the rest of the UI, and Bold fonts and exclamation
marks always make be feel being yelled at.

Change-Id: If8ca6ce9d54777e65dda4d0c3002c298a9717ea2
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
hjk
2013-10-11 14:42:18 +02:00
committed by Thomas Hartmann
parent 479aa2dc28
commit ec26cb8208
2 changed files with 4 additions and 10 deletions

View File

@@ -123,7 +123,7 @@ Button {
text: control.text
color: control.pressed || control.checked ? "lightGray" : "black"
font.pixelSize: 15
font.bold: true
font.bold: false
smooth: true
}
}

View File

@@ -104,13 +104,7 @@ ColumnLayout {
Text {
text: qsTr("New to Qt?")
font.pixelSize: 18
font.bold: true
}
Text {
text: qsTr("Get Started Now!")
font.pixelSize: 14
font.bold: true
font.bold: false
}
Text {
@@ -126,12 +120,12 @@ ColumnLayout {
}
Button {
text: qsTr("Get Started")
text: qsTr("Get Started Now")
onClicked: gettingStarted.openSplitHelp("qthelp://org.qt-project.qtcreator/doc/creator-getting-started.html")
}
Item {
height: 8
height: 18
width: parent.width
}