Skip to content

Commit

Permalink
Fixing warning in Xcode 14.
Browse files Browse the repository at this point in the history
twostraws committed Jun 14, 2022
1 parent 69320e0 commit 9f1bd84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ControlRoom/Simulator UI/ControlScreens/ScreenView.swift
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ struct ScreenView: View {

Section(header: Text("Video").font(.headline)) {
Picker("Format:", selection: $videoFormat) {
ForEach(0..<VideoFormat.all.count) { item in
ForEach(0..<VideoFormat.all.count, id: \.self) { item in
Text(VideoFormat.all[item].name)
}
}

0 comments on commit 9f1bd84

Please sign in to comment.