diff options
Diffstat (limited to 'Sora/Views/Settings')
| -rw-r--r-- | Sora/Views/Settings/Section/SettingsCreditsView.swift (renamed from Sora/Views/Settings/Section/SettingsAttributionsView.swift) | 2 | ||||
| -rw-r--r-- | Sora/Views/Settings/SettingsView.swift | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Sora/Views/Settings/Section/SettingsAttributionsView.swift b/Sora/Views/Settings/Section/SettingsCreditsView.swift index 3c94c4e..741ce25 100644 --- a/Sora/Views/Settings/Section/SettingsAttributionsView.swift +++ b/Sora/Views/Settings/Section/SettingsCreditsView.swift @@ -1,6 +1,6 @@ import SwiftUI -struct SettingsAttributionsView: View { +struct SettingsCreditsView: View { var body: some View { Text("Rabbit SVG created by Kim Sun Young") .fontWeight(.light) diff --git a/Sora/Views/Settings/SettingsView.swift b/Sora/Views/Settings/SettingsView.swift index a0eba01..2d09168 100644 --- a/Sora/Views/Settings/SettingsView.swift +++ b/Sora/Views/Settings/SettingsView.swift @@ -28,8 +28,8 @@ struct SettingsView: View { } } - Section(header: Text("Attributions")) { - SettingsAttributionsView() + Section(header: Text("Credits")) { + SettingsCreditsView() } } #if os(macOS) |