comment out quality to avoid issues
This commit is contained in:
parent
a25e26d4a6
commit
03a8282d1f
|
@ -63,19 +63,20 @@ struct SettingsView: View {
|
|||
}
|
||||
}
|
||||
|
||||
Section(header: Text("Networking")) {
|
||||
Picker("Default local quality", selection: $inNetworkStreamBitrate) {
|
||||
ForEach(self.viewModel.bitrates, id: \.self) { bitrate in
|
||||
Text(bitrate.name).tag(bitrate.value)
|
||||
}
|
||||
}
|
||||
|
||||
Picker("Default remote quality", selection: $outOfNetworkStreamBitrate) {
|
||||
ForEach(self.viewModel.bitrates, id: \.self) { bitrate in
|
||||
Text(bitrate.name).tag(bitrate.value)
|
||||
}
|
||||
}
|
||||
}
|
||||
// TODO: Implement these for playback
|
||||
// Section(header: Text("Networking")) {
|
||||
// Picker("Default local quality", selection: $inNetworkStreamBitrate) {
|
||||
// ForEach(self.viewModel.bitrates, id: \.self) { bitrate in
|
||||
// Text(bitrate.name).tag(bitrate.value)
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// Picker("Default remote quality", selection: $outOfNetworkStreamBitrate) {
|
||||
// ForEach(self.viewModel.bitrates, id: \.self) { bitrate in
|
||||
// Text(bitrate.name).tag(bitrate.value)
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
Section(header: Text("Video Player")) {
|
||||
Picker("Jump Forward Length", selection: $jumpForwardLength) {
|
||||
|
|
Loading…
Reference in New Issue