Compare commits

..

No commits in common. "24badf872db4020983e2d6f91ec1d62749b84d96" and "3e5e6b74478f5dd54776fbe1ad6012ba62fbdf1a" have entirely different histories.

4 changed files with 5 additions and 8 deletions

View File

@ -133,7 +133,7 @@ public final class SoundManager {
)
try AVAudioSession.sharedInstance().setActive(true)
} catch {
Design.debugLog("Failed to configure audio session: \(error)")
print("Failed to configure audio session: \(error)")
}
#endif
}
@ -168,7 +168,7 @@ public final class SoundManager {
player.play()
return
} catch {
Design.debugLog("Failed to load sound \(key): \(error)")
print("Failed to load sound \(key): \(error)")
}
}
@ -202,7 +202,7 @@ public final class SoundManager {
player.prepareToPlay()
audioPlayers[key] = player
} catch {
Design.debugLog("Failed to preload sound \(key): \(error)")
print("Failed to preload sound \(key): \(error)")
}
}
}

View File

@ -72,8 +72,7 @@ public struct SegmentedPicker<T: Equatable>: View {
}
}
}
.padding(.vertical, Design.Spacing.medium)
.padding(.horizontal, Design.Spacing.medium)
.padding(.vertical, Design.Spacing.xSmall)
}
}

View File

@ -111,8 +111,7 @@ public struct SettingsSegmentedPicker<T: Equatable, Accessory: View>: View {
}
.sensoryFeedback(.selection, trigger: selection)
}
.padding(.vertical, Design.Spacing.medium)
.padding(.horizontal, Design.Spacing.medium)
.padding(.vertical, Design.Spacing.xSmall)
}
}

View File

@ -151,7 +151,6 @@ private struct SyncStatusRow<ViewModel: CloudSyncable>: View {
Text(String(localized: "Sync Now")).styled(.captionEmphasis, emphasis: .custom(accentColor))
}
}
.padding(.horizontal, Design.Spacing.medium)
}
}