diff --git a/touch/PodcastsPage.qml b/touch/PodcastsPage.qml index 309b8ca..b07129f 100644 --- a/touch/PodcastsPage.qml +++ b/touch/PodcastsPage.qml @@ -109,6 +109,12 @@ SlidePage { onClicked: pgst.loadPage('EpisodesPage.qml', {'podcast_id': id, 'title': title}); onPressAndHold: { pgst.showSelection([ + { + label: 'Refresh', + callback: function () { + py.call('main.check_for_episodes', [url]); + }, + }, { label: 'Unsubscribe', callback: function () { @@ -116,7 +122,8 @@ SlidePage { pgst.showConfirmation(title, 'Unsubscribe', 'Cancel', 'Remove this podcast and all downloaded episodes?', Icons.trash, function () { ctx.py.call('main.unsubscribe', [ctx.id]); }); - } }, + }, + }, { label: 'Rename', callback: function () {