File tree Expand file tree Collapse file tree 1 file changed +0
-25
lines changed
app/src/main/java/com/pira/ccloud/screens Expand file tree Collapse file tree 1 file changed +0
-25
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments