From d6df2de7676da1be8380f69e2f3a5b7b8c3ef8c9 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Mon, 23 Nov 2020 09:26:08 -0700 Subject: [PATCH] Add tooltips for inline chat text box toolbuttons --- imports/NeoChat/Component/ChatTextInput.qml | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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") + } } } }