From 7f58ee37934512304e15c81b061a5acab731617a Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 13 Jan 2026 18:05:03 -0500 Subject: [PATCH] Improve space suggestions editing This is confusing to users as there may be two "remove" icons, but one of them is actually for suggestions. BUG: 497044 FIXED-IN: 26.04 --- src/spaces/SpaceHierarchyDelegate.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spaces/SpaceHierarchyDelegate.qml b/src/spaces/SpaceHierarchyDelegate.qml index cad40fbf4..aeca8d0b7 100644 --- a/src/spaces/SpaceHierarchyDelegate.qml +++ b/src/spaces/SpaceHierarchyDelegate.qml @@ -140,8 +140,8 @@ Item { } QQC2.ToolButton { visible: root.parentRoom?.canSendState("m.space.child") ?? false - text: root.isSuggested ? i18nc("@button", "Don't Make Suggested") : i18nc("@button", "Make Suggested") - icon.name: root.isSuggested ? "edit-delete-remove" : "checkmark" + text: root.isSuggested ? i18nc("@button", "Don't Suggest") : i18nc("@button", "Make Suggested") + icon.name: root.isSuggested ? "window-unpin-symbolic" : "window-pin-symbolic" display: QQC2.AbstractButton.IconOnly onClicked: root.parentRoom.toggleChildSuggested(root.roomId)