Skip to content

Commit

Permalink
uhhh
Browse files Browse the repository at this point in the history
  • Loading branch information
jcm committed Aug 26, 2023
1 parent 6d7a663 commit 408042f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@ struct ConfigurationView: View {
VStack(alignment: .leading) {
Group {
Spacer()
.frame(height: 10)
.frame(minHeight: 10)

HeaderView("Video")
.padding(EdgeInsets(top: 0, leading: 0, bottom: 1, trailing: 0))

VideoCaptureConfigurationView(screenRecorder: self.screenRecorder)

Spacer()
.frame(height: 8)
.frame(minHeight: 8)

HeaderView("Audio")

AudioConfigurationView(screenRecorder: self.screenRecorder)

Spacer()
.frame(height: 8)
.frame(minHeight: 8)

HeaderView("Encoder")
.padding(EdgeInsets(top: 0, leading: 0, bottom: 1, trailing: 0))
Expand All @@ -55,7 +55,7 @@ struct ConfigurationView: View {


Spacer()
.frame(height: 8)
.frame(minHeight: 8)

HeaderView("Output")

Expand Down

0 comments on commit 408042f

Please sign in to comment.