diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 71a561877..d99332409 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -443,8 +443,11 @@ if(ANDROID) target_sources(neochat-app PRIVATE notifyrc.qrc) target_link_libraries(neochat PUBLIC Qt::Svg OpenSSL::SSL) kirigami_package_breeze_icons(ICONS - "arrow-down" - "arrow-up" + "arrow-down-symbolic" + "arrow-up-symbolic" + "arrow-up-double-symbolic" + "arrow-left-symbolic" + "arrow-right-symbolic" "checkmark" "help-about" "im-user" diff --git a/src/chatbar/EmojiDelegate.qml b/src/chatbar/EmojiDelegate.qml index ecf28440d..3ac3b68c0 100644 --- a/src/chatbar/EmojiDelegate.qml +++ b/src/chatbar/EmojiDelegate.qml @@ -33,7 +33,7 @@ QQC2.ItemDelegate { Kirigami.Icon { width: Kirigami.Units.gridUnit * 0.5 height: Kirigami.Units.gridUnit * 0.5 - source: "arrow-down" + source: "arrow-down-symbolic" anchors.bottom: parent.bottom anchors.right: parent.right visible: root.showTones diff --git a/src/login/WelcomePage.qml b/src/login/WelcomePage.qml index f8f67646a..ab3266b7f 100644 --- a/src/login/WelcomePage.qml +++ b/src/login/WelcomePage.qml @@ -232,7 +232,7 @@ Kirigami.Page { text: root.currentStep.nextAction && root.currentStep.nextAction.text ? root.currentStep.nextAction.text : i18nc("@action:button", "Continue") visible: root.currentStep.nextAction onClicked: root.currentStep.nextAction.trigger() - icon.name: "arrow-right" + icon.name: "arrow-right-symbolic" enabled: root.currentStep.nextAction ? root.currentStep.nextAction.enabled : false } @@ -240,7 +240,7 @@ Kirigami.Page { text: i18nc("@action:button", "Go back") visible: root.currentStep.previousAction onClicked: root.currentStep.previousAction.trigger() - icon.name: "arrow-left" + icon.name: "arrow-left-symbolic" enabled: root.currentStep.previousAction ? root.currentStep.previousAction.enabled : false } } diff --git a/src/qml/ConfirmLeaveDialog.qml b/src/qml/ConfirmLeaveDialog.qml index 653b82a4b..1bf76d498 100644 --- a/src/qml/ConfirmLeaveDialog.qml +++ b/src/qml/ConfirmLeaveDialog.qml @@ -27,7 +27,7 @@ Kirigami.PromptDialog { QQC2.Button { text: i18nc("@action:button", "Leave Room") QQC2.DialogButtonBox.buttonRole: QQC2.DialogButtonBox.AcceptRole - icon.name: "arrow-left" + icon.name: "arrow-left-symbolic" onClicked: RoomManager.leaveRoom(root.room) } } diff --git a/src/qml/ContextMenu.qml b/src/qml/ContextMenu.qml index d8da9cbb9..bff25c285 100644 --- a/src/qml/ContextMenu.qml +++ b/src/qml/ContextMenu.qml @@ -35,7 +35,7 @@ Loader { QQC2.MenuItem { text: room.isLowPriority ? i18n("Reprioritize") : i18n("Deprioritize") - icon.name: room.isLowPriority ? "arrow-up" : "arrow-down" + icon.name: room.isLowPriority ? "arrow-up-symbolic" : "arrow-down-symbolic" onTriggered: room.isLowPriority ? room.removeTag("m.lowpriority") : room.addTag("m.lowpriority", 1.0) } @@ -195,7 +195,7 @@ Loader { Delegates.RoundedItemDelegate { text: room.isLowPriority ? i18n("Reprioritize") : i18n("Deprioritize") - icon.name: room.isLowPriority ? "arrow-up" : "arrow-down" + icon.name: room.isLowPriority ? "arrow-up-symbolic" : "arrow-down-symbolic" onClicked: room.isLowPriority ? room.removeTag("m.lowpriority") : room.addTag("m.lowpriority", 1.0) Layout.fillWidth: true } diff --git a/src/qml/RoomInformation.qml b/src/qml/RoomInformation.qml index 825e6c463..71dfd18ae 100644 --- a/src/qml/RoomInformation.qml +++ b/src/qml/RoomInformation.qml @@ -132,7 +132,7 @@ QQC2.ScrollView { Delegates.RoundedItemDelegate { id: leaveButton - icon.name: "arrow-left" + icon.name: "arrow-left-symbolic" text: i18nc("@action:button", "Leave this room") activeFocusOnTab: true