diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 08e7bdb6b..9bfb80601 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -432,6 +432,7 @@ if(ANDROID) "preferences-desktop-notification" "computer-symbolic" "gps" + "system-users-symbolic" ) else() target_link_libraries(neochat PUBLIC Qt::Widgets KF6::KIOWidgets) diff --git a/src/qml/ExploreComponent.qml b/src/qml/ExploreComponent.qml index 06d340e1d..6e5c90c9d 100644 --- a/src/qml/ExploreComponent.qml +++ b/src/qml/ExploreComponent.qml @@ -38,7 +38,7 @@ RowLayout { } property Kirigami.Action roomAction: Kirigami.Action { text: i18n("Create a Room") - icon.name: "system-users" + icon.name: "system-users-symbolic" onTriggered: { pageStack.pushDialogLayer("qrc:/org/kde/neochat/qml/CreateRoomDialog.qml", {connection: root.connection}, {title: i18nc("@title", "Create a Room")}) }