Stats on cover, refresh cover action, refresh spinner

This commit is contained in:
Thomas Perl 2014-02-10 21:29:00 +01:00
parent 63070138b0
commit 943ac98b01
3 changed files with 50 additions and 2 deletions

View file

@ -56,5 +56,14 @@ CoverBackground {
iconSource: 'image://theme/icon-cover-play'
onTriggered: player.play();
}
CoverAction {
iconSource: 'image://theme/icon-cover-refresh'
onTriggered: {
if (!py.refreshing) {
py.call('main.check_for_episodes');
}
}
}
}
}