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")) {
|
// TODO: Implement these for playback
|
||||||
Picker("Default local quality", selection: $inNetworkStreamBitrate) {
|
// Section(header: Text("Networking")) {
|
||||||
ForEach(self.viewModel.bitrates, id: \.self) { bitrate in
|
// Picker("Default local quality", selection: $inNetworkStreamBitrate) {
|
||||||
Text(bitrate.name).tag(bitrate.value)
|
// 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
|
// Picker("Default remote quality", selection: $outOfNetworkStreamBitrate) {
|
||||||
Text(bitrate.name).tag(bitrate.value)
|
// ForEach(self.viewModel.bitrates, id: \.self) { bitrate in
|
||||||
}
|
// Text(bitrate.name).tag(bitrate.value)
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
Section(header: Text("Video Player")) {
|
Section(header: Text("Video Player")) {
|
||||||
Picker("Jump Forward Length", selection: $jumpForwardLength) {
|
Picker("Jump Forward Length", selection: $jumpForwardLength) {
|
||||||
|
|
Loading…
Reference in New Issue