From 916755b4ad1c531d1050b899684c1f2716d47c8d Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 16 Aug 2023 16:07:35 -0400 Subject: [PATCH] Use view-list-details instead of expand icon in room drawer (cherry picked from commit 24d0082048b5098b5762f085a0fb72a13e9b2079) --- src/qml/Page/RoomList/SpaceListContextMenu.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/Page/RoomList/SpaceListContextMenu.qml b/src/qml/Page/RoomList/SpaceListContextMenu.qml index 2a0e44e1f..7aabc3507 100644 --- a/src/qml/Page/RoomList/SpaceListContextMenu.qml +++ b/src/qml/Page/RoomList/SpaceListContextMenu.qml @@ -24,7 +24,7 @@ Loader { QQC2.Menu { QQC2.MenuItem { text: i18nc("'Space' is a matrix space", "View Space") - icon.name: "expand" + icon.name: "view-list-details" onTriggered: RoomManager.enterRoom(room); }