forked from qt-creator/qt-creator
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:
@@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user