Skip to content

Commit fcc2524

Browse files
author
code3-dev
committed
Add favorites & Fix bugs
1 parent 2e4bd6f commit fcc2524

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

app/src/main/java/com/pira/ccloud/screens/SingleSeriesScreen.kt

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -225,31 +225,6 @@ fun SourceOptionsDialog(
225225
modifier = Modifier.fillMaxWidth(),
226226
verticalArrangement = Arrangement.spacedBy(12.dp)
227227
) {
228-
// Download options button - Show for all episodes with sources
229-
Button(
230-
onClick = {
231-
if (episode.sources.size == 1) {
232-
selectedSource = episode.sources[0]
233-
showDownloadOptions = true
234-
} else {
235-
// For multiple sources, we'll handle this in the DownloadMenu
236-
// But since we're already in SourceOptionsDialog, this case shouldn't happen
237-
}
238-
},
239-
enabled = episode.sources.isNotEmpty(),
240-
modifier = Modifier.fillMaxWidth(),
241-
shape = RoundedCornerShape(16.dp),
242-
elevation = androidx.compose.material3.ButtonDefaults.elevatedButtonElevation()
243-
) {
244-
Icon(
245-
imageVector = Icons.Default.Download,
246-
contentDescription = "Download",
247-
modifier = Modifier.size(20.dp)
248-
)
249-
Spacer(modifier = Modifier.width(8.dp))
250-
Text("Download Options")
251-
}
252-
253228
// Play buttons for each source/quality
254229
episode.sources.forEach { source ->
255230
Button(

0 commit comments

Comments
 (0)