diff options
| author | Fuwn <[email protected]> | 2025-02-27 20:52:34 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-27 20:52:34 -0800 |
| commit | bcf51684c9f2346597bfc11d6de47f682c14e416 (patch) | |
| tree | c70d8cd5fc396470aa37f390290590d20e1b6787 /Sora/Views/MainView.swift | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-bcf51684c9f2346597bfc11d6de47f682c14e416.tar.xz sora-testing-bcf51684c9f2346597bfc11d6de47f682c14e416.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/MainView.swift')
| -rw-r--r-- | Sora/Views/MainView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sora/Views/MainView.swift b/Sora/Views/MainView.swift index 03612c9..73eeed5 100644 --- a/Sora/Views/MainView.swift +++ b/Sora/Views/MainView.swift @@ -1,7 +1,7 @@ import SwiftUI struct MainView: View { - @EnvironmentObject var settings: Settings + @EnvironmentObject var settings: SettingsManager @State private var selectedTab: Int = 0 @State private var manager = BooruManager(.yandere) @@ -86,7 +86,7 @@ struct MainView: View { #Preview { MainView() - .environmentObject(Settings()) + .environmentObject(SettingsManager()) #if os(macOS) .frame(width: 736, height: 736) #endif |