Revert "iOS: put the in game speed control on the number row"

This reverts commit 16da198d78.
This commit is contained in:
Jeen
2026-08-03 10:11:47 +02:00
committed by GitHub
parent e1a7c23fcf
commit 29b32743f6
@@ -1894,11 +1894,19 @@ private struct SpeedControlPanel: View {
))
VStack(alignment: .leading, spacing: 10) {
NumberRow("Fast Forward Speed", value: $settings.fastForwardScalar,
in: SettingsStore.minFastForwardScalar...SettingsStore.maxFastForwardScalar,
format: .unitPercent, step: 0.25,
default: SettingsStore.defaultFastForwardScalar,
settings: settings)
HStack {
Text(settings.localized("Fast Forward Speed"))
Spacer()
Text(Self.formatPercent(settings.fastForwardScalar))
.foregroundStyle(.secondary)
.font(.callout.monospacedDigit())
}
Slider(
value: $settings.fastForwardScalar,
in: SettingsStore.minFastForwardScalar...SettingsStore.maxFastForwardScalar,
step: 0.25
)
HStack {
quickFastForwardButton(1.5)