Compare commits

..

3 Commits

Author SHA1 Message Date
24badf872d Signed-off-by: Matt Bruce <mbrucedogs@gmail.com> 2026-02-09 09:35:57 -06:00
1e13ea74e7 Merge branch 'develop' of ssh://git@192.168.1.128:220/mbrucedogs/Bedrock.git into develop 2026-02-09 09:16:12 -06:00
36f317c883 removed print
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2026-02-09 09:15:37 -06:00
4 changed files with 8 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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