summary refs log tree commit diff
path: root/resources/qml/MessageInput.qml
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2021-11-17 00:39:27 +0100
committerGitHub <noreply@github.com>2021-11-17 00:39:27 +0100
commitcf43b7b9f012e6c92b7db4aa9e27d1b9eac81315 (patch)
tree66f38ac0c399d7c220a33b87dd7f17cc56bcfe01 /resources/qml/MessageInput.qml
parentTranslated using Weblate (Polish) (diff)
parentUse filled shields everywhere and distinguish different states more (diff)
downloadnheko-cf43b7b9f012e6c92b7db4aa9e27d1b9eac81315.tar.xz
Merge pull request #807 from LorenDB/fluentIcons
Switch icon theme to Fluent icons
Diffstat (limited to 'resources/qml/MessageInput.qml')
-rw-r--r--resources/qml/MessageInput.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/qml/MessageInput.qml b/resources/qml/MessageInput.qml

index c95929ce..b27b59c9 100644 --- a/resources/qml/MessageInput.qml +++ b/resources/qml/MessageInput.qml
@@ -39,7 +39,7 @@ Rectangle { hoverEnabled: true width: 22 height: 22 - image: CallManager.isOnCall ? ":/icons/icons/ui/end-call.png" : ":/icons/icons/ui/place-call.png" + image: CallManager.isOnCall ? ":/icons/icons/ui/end-call.svg" : ":/icons/icons/ui/place-call.svg" ToolTip.visible: hovered ToolTip.text: CallManager.isOnCall ? qsTr("Hang up") : qsTr("Place a call") Layout.margins: 8 @@ -62,7 +62,7 @@ Rectangle { hoverEnabled: true width: 22 height: 22 - image: ":/icons/icons/ui/paper-clip-outline.png" + image: ":/icons/icons/ui/attach.svg" Layout.margins: 8 onClicked: room.input.openFileSelection() ToolTip.visible: hovered @@ -372,7 +372,7 @@ Rectangle { hoverEnabled: true width: 22 height: 22 - image: ":/icons/icons/ui/smile.png" + image: ":/icons/icons/ui/smile.svg" ToolTip.visible: hovered ToolTip.text: qsTr("Emoji") onClicked: emojiPopup.visible ? emojiPopup.close() : emojiPopup.show(emojiButton, function(emoji) { @@ -387,7 +387,7 @@ Rectangle { hoverEnabled: true width: 22 height: 22 - image: ":/icons/icons/ui/cursor.png" + image: ":/icons/icons/ui/send.svg" Layout.rightMargin: 8 ToolTip.visible: hovered ToolTip.text: qsTr("Send")