forked from qt-creator/qt-creator
QmlProfiler: use qsTr just around the strings
Change-Id: I23b2fc2d1c64581dbfde9f77d8a39bc5d185bb54 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
@@ -243,7 +243,7 @@ Item {
|
|||||||
implicitHeight: txt.height - 1
|
implicitHeight: txt.height - 1
|
||||||
enabled: expanded || trigger(qmlProfilerModelProxy.count(modelIndex)) > 0
|
enabled: expanded || trigger(qmlProfilerModelProxy.count(modelIndex)) > 0
|
||||||
iconSource: expanded ? "arrow_down.png" : "arrow_right.png"
|
iconSource: expanded ? "arrow_down.png" : "arrow_right.png"
|
||||||
tooltip: qsTr(expanded ? "Collapse category" : "Expand category.")
|
tooltip: expanded ? qsTr("Collapse category") : qsTr("Expand category.")
|
||||||
onClicked: qmlProfilerModelProxy.setExpanded(modelIndex, !expanded);
|
onClicked: qmlProfilerModelProxy.setExpanded(modelIndex, !expanded);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user