From ac232d7f55f7e13da22b5029eb8606b5fc656951 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 2 Sep 2024 12:37:25 -0400 Subject: [PATCH] Change the "configure room" button icon to something more fitting This button doesn't actually configure anything, you can do plenty of actions like "mark as read" and such. Since the button isn't solely for configuration, we should use an overflow menu icon instead. --- src/qml/RoomDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/RoomDelegate.qml b/src/qml/RoomDelegate.qml index 50434409f..4bc6be5ea 100644 --- a/src/qml/RoomDelegate.qml +++ b/src/qml/RoomDelegate.qml @@ -145,7 +145,7 @@ Delegates.RoundedItemDelegate { text: i18n("Configure room") display: QQC2.Button.IconOnly - icon.name: "configure" + icon.name: "overflow-menu-symbolic" onClicked: createRoomListContextMenu() } }