forked from qt-creator/qt-creator
Qt Quick Designer: Fix caps for property editor text
Change-Id: I8a0e727e981f5cd2c441fadda0cb71718ec1c667 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
committed by
Thomas Hartmann
parent
b405f81ada
commit
c4202f28fe
@@ -157,7 +157,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Controls.MenuItem {
|
Controls.MenuItem {
|
||||||
text: qsTr("Insert keyframe")
|
text: qsTr("Insert Keyframe")
|
||||||
visible: hasActiveTimeline
|
visible: hasActiveTimeline
|
||||||
onTriggered: insertKeyframe(backendValue.name)
|
onTriggered: insertKeyframe(backendValue.name)
|
||||||
}
|
}
|
||||||
|
@@ -237,11 +237,11 @@ Section {
|
|||||||
}
|
}
|
||||||
|
|
||||||
CheckBox {
|
CheckBox {
|
||||||
text: qsTr("Prefer Shaping")
|
text: qsTr("Prefer shaping")
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
backendValue: (backendValues.font_preferShaping === undefined) ? dummyBackendValue : backendValues.font_preferShaping
|
backendValue: (backendValues.font_preferShaping === undefined) ? dummyBackendValue : backendValues.font_preferShaping
|
||||||
tooltip: qsTr("Sometimes, a font will apply complex rules to a set of characters in order to display them correctly.\n" +
|
tooltip: qsTr("Sometimes, a font will apply complex rules to a set of characters in order to display them correctly.\n" +
|
||||||
"In some writing systems, such as Brahmic scripts, this is required in order for the text to be legible, but in e.g." +
|
"In some writing systems, such as Brahmic scripts, this is required in order for the text to be legible, whereas in" +
|
||||||
"Latin script,\n it is merely a cosmetic feature. Setting the preferShaping property to false will disable all such features\nwhen they are not required, which will improve performance in most cases.")
|
"Latin script,\n it is merely a cosmetic feature. Setting the preferShaping property to false will disable all such features\nwhen they are not required, which will improve performance in most cases.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -131,7 +131,7 @@ Section {
|
|||||||
|
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: qsTr("Line Height")
|
text: qsTr("Line height")
|
||||||
tooltip: qsTr("Sets the line height for the text.")
|
tooltip: qsTr("Sets the line height for the text.")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user