QmlDesigner: Add missing tooltips

Change-Id: I90f157e6396733a6c6b7f9ccee052cdb5e30e291
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Thomas Hartmann
2023-01-25 15:46:34 +01:00
parent efd7d26e85
commit fecd361483

View File

@@ -31,7 +31,7 @@ Rectangle {
anchors.left: parent.left
anchors.leftMargin: 10
enabled: backend.isDesignModeEnabled
tooltip: qsTr("Switch to Design Mode")
tooltip: qsTr("Switch to Design Mode.")
buttonIcon: StudioTheme.Constants.topToolbar_designMode
onClicked: backend.triggerModeChange()
@@ -49,6 +49,7 @@ Rectangle {
anchors.left: parent.left
anchors.leftMargin: 10
buttonIcon: StudioTheme.Constants.topToolbar_home
tooltip: qsTr("Switch to Welcome Mode.")
onClicked: backend.triggerModeChange()
}
@@ -66,6 +67,7 @@ Rectangle {
}
onClicked: backend.runProject()
tooltip: qsTr("Run Project")
}
ToolbarButton {