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 text: control.text
color: control.pressed || control.checked ? "lightGray" : "black" color: control.pressed || control.checked ? "lightGray" : "black"
font.pixelSize: 15 font.pixelSize: 15
font.bold: true font.bold: false
smooth: true smooth: true
} }
} }

View File

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