Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ private fun getSkipModeDisplayName(mode: SkipMode): String =

@Composable
private fun BufferSizeSelectorItem(selectedSizeMb: Int, onSizeSelected: (Int) -> Unit) {
val options = listOf(32 to "32 MB", 64 to "64 MB", 128 to "128 MB")
val options = listOf(32 to "32 MB", 64 to "64 MB", 128 to "128 MB" , 256 to "256 MB", 512 to "512 MB")
var expanded by remember { mutableStateOf(false) }
val currentLabel = options.find { it.first == selectedSizeMb }?.second ?: "64 MB"

Expand Down