From 505c1e620497828ffb914e05dd76d9ab124f144a Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 16 Sep 2024 11:07:46 +0200 Subject: Format the code --- Captura/Presentation/Settings/OutputSettings.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Captura/Presentation/Settings/OutputSettings.swift') diff --git a/Captura/Presentation/Settings/OutputSettings.swift b/Captura/Presentation/Settings/OutputSettings.swift index bfad7c7..9dc5be9 100644 --- a/Captura/Presentation/Settings/OutputSettings.swift +++ b/Captura/Presentation/Settings/OutputSettings.swift @@ -17,17 +17,17 @@ import SwiftUI struct OutputSettings: View { - + @AppStorage("outputFormats") var outputFormats: OutputFormatSetting = .all @AppStorage("frameRate") var frameRate = 10.0 - + private var anyState: String { "\(outputFormats), \(frameRate)" } - + var body: some View { Form { - VStack (alignment: .center) { + VStack(alignment: .center) { LabeledContent("GIF Framerate") { - Slider(value: $frameRate, in: 4...10, step: 1) { + Slider(value: $frameRate, in: 4...10, step: 1) { Text("\(Int(frameRate))").font(.body).frame(width: 24) } minimumValueLabel: { Text("4") @@ -44,7 +44,7 @@ struct OutputSettings: View { .tag(OutputFormatSetting.gifOnly) .padding(.horizontal, 4.0) .padding(.vertical, 2.0) - + Text("Only MP4") .tag(OutputFormatSetting.mp4Only) .padding(.horizontal, 4.0) -- cgit