summary refs log tree commit diff
path: root/resources/qml/MessageView.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/MessageView.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/MessageView.qml')
-rw-r--r--resources/qml/MessageView.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml

index b70335bb..868b3885 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml
@@ -83,7 +83,7 @@ ScrollView { buttonTextColor: Nheko.colors.buttonText width: 16 hoverEnabled: true - image: ":/icons/icons/ui/edit.png" + image: ":/icons/icons/ui/edit.svg" ToolTip.visible: hovered ToolTip.text: qsTr("Edit") onClicked: { @@ -99,7 +99,7 @@ ScrollView { visible: chat.model ? chat.model.permissions.canSend(MtxEvent.Reaction) : false width: 16 hoverEnabled: true - image: ":/icons/icons/ui/smile.png" + image: ":/icons/icons/ui/smile.svg" ToolTip.visible: hovered ToolTip.text: qsTr("React") onClicked: emojiPopup.visible ? emojiPopup.close() : emojiPopup.show(reactButton, function(emoji) { @@ -115,7 +115,7 @@ ScrollView { visible: chat.model ? chat.model.permissions.canSend(MtxEvent.TextMessage) : false width: 16 hoverEnabled: true - image: ":/icons/icons/ui/mail-reply.png" + image: ":/icons/icons/ui/reply.svg" ToolTip.visible: hovered ToolTip.text: qsTr("Reply") onClicked: chat.model.replyAction(row.model.eventId) @@ -126,7 +126,7 @@ ScrollView { width: 16 hoverEnabled: true - image: ":/icons/icons/ui/vertical-ellipsis.png" + image: ":/icons/icons/ui/options.svg" ToolTip.visible: hovered ToolTip.text: qsTr("Options") onClicked: messageContextMenu.show(row.model.eventId, row.model.type, row.model.isSender, row.model.isEncrypted, row.model.isEditable, "", row.model.body, optionsButton)