From d865d3b27dc63c8f6ebe905010286a68dd1b6573 Mon Sep 17 00:00:00 2001 From: Jack Hill Date: Tue, 12 Sep 2023 17:07:31 +0100 Subject: [PATCH] KF6: Port away from manually closing Kirigami.MenuDialog This is now handled automatically by the dialog itself --- src/qml/FeedListDelegate.qml | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/qml/FeedListDelegate.qml b/src/qml/FeedListDelegate.qml index aa6bceaf..495899f0 100644 --- a/src/qml/FeedListDelegate.qml +++ b/src/qml/FeedListDelegate.qml @@ -252,7 +252,6 @@ Controls.ItemDelegate { while (pageStack.depth > 1) pageStack.pop() pageStack.push("qrc:/FeedDetailsPage.qml", {"feed": feed}); - actionOverlay.close(); } icon.name: "documentinfo" text: i18n("Podcast Details") @@ -263,7 +262,6 @@ Controls.ItemDelegate { while(pageStack.depth > 1) pageStack.pop() DataManager.removeFeed(feed) - actionOverlay.close(); } icon.name: "delete" text: i18n("Remove Podcast")