Add tooltips for inline chat text box toolbuttons

This commit is contained in:
Nate Graham
2020-11-23 09:26:08 -07:00
parent 09be81a6cc
commit d6df2de767

View File

@@ -377,6 +377,10 @@ ToolBar {
Layout.alignment: Qt.AlignTop
onClicked: emojiPicker.visible = !emojiPicker.visible
ToolTip {
text: i18n("Add an Emoji")
}
}
ToolButton {
@@ -403,6 +407,10 @@ ToolBar {
}
}
ToolTip {
text: i18n("Attach an image or file")
}
BusyIndicator {
anchors.fill: parent
@@ -421,6 +429,10 @@ ToolBar {
root.clearReply()
root.closeAll()
}
ToolTip {
text: i18n("Send message")
}
}
}
}