From 722fc153689316ddb39ae68a4fabbaae2a08e4a2 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Wed, 2 Dec 2020 18:51:51 +0100 Subject: [PATCH] Remove quick favorite action, this isn't an action often used --- imports/NeoChat/Page/RoomListPage.qml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/imports/NeoChat/Page/RoomListPage.qml b/imports/NeoChat/Page/RoomListPage.qml index 7b21ff9fb..e830fc23e 100644 --- a/imports/NeoChat/Page/RoomListPage.qml +++ b/imports/NeoChat/Page/RoomListPage.qml @@ -111,17 +111,6 @@ Kirigami.ScrollablePage { } } actions: [ - Kirigami.Action { - id: makeAction - text: currentRoom.isFavourite ? i18n("Remove room from favorites") : i18n("Make room favorite") - - icon.name: currentRoom.isFavourite ? "rating" : "rating-unrated" - checkable: true - checked: currentRoom.isFavourite - - onTriggered: currentRoom.isFavourite ? currentRoom.removeTag("m.favourite") : currentRoom.addTag("m.favourite", 1.0) - - }, Kirigami.Action { id: optionAction