We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f74118 commit c589a68Copy full SHA for c589a68
app/src/main/kotlin/ac/mdiq/podcini/ui/compose/EpisodesVM.kt
@@ -154,7 +154,7 @@ class EpisodeVM(var episode: Episode, val tag: String) {
154
var downloadState by mutableIntStateOf(if (episode.downloaded == true) DownloadStatus.State.COMPLETED.ordinal else DownloadStatus.State.UNKNOWN.ordinal)
155
var viewCount by mutableIntStateOf(episode.viewCount)
156
var actionButton by mutableStateOf<EpisodeActionButton>(NullActionButton(episode))
157
- var actionRes by mutableIntStateOf(actionButton.getDrawable())
+ var actionRes by mutableIntStateOf(actionButton.drawable)
158
var showAltActionsDialog by mutableStateOf(false)
159
var dlPercent by mutableIntStateOf(0)
160
var isSelected by mutableStateOf(false)
0 commit comments