diff --git a/imports/NeoChat/Component/ChatTextInput.qml b/imports/NeoChat/Component/ChatTextInput.qml index 9a5838730..b9e5c8b93 100644 --- a/imports/NeoChat/Component/ChatTextInput.qml +++ b/imports/NeoChat/Component/ChatTextInput.qml @@ -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") + } } } }