summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/SettingsDetailsView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sora/Views/Settings/SettingsDetailsView.swift')
-rw-r--r--Sora/Views/Settings/SettingsDetailsView.swift15
1 files changed, 0 insertions, 15 deletions
diff --git a/Sora/Views/Settings/SettingsDetailsView.swift b/Sora/Views/Settings/SettingsDetailsView.swift
deleted file mode 100644
index c51ab76..0000000
--- a/Sora/Views/Settings/SettingsDetailsView.swift
+++ /dev/null
@@ -1,15 +0,0 @@
-import SwiftUI
-
-struct SettingsDetailsView: View {
- @EnvironmentObject var settings: Settings
-
- var body: some View {
- Picker("Detail View Type", selection: $settings.detailViewType) {
- ForEach(BooruPostFileType.allCases, id: \.self) { type in
- Text(type.rawValue.capitalized).tag(type)
- }
- }
-
- Toggle("Enable \"Share Image\" Shortcut", isOn: $settings.enableShareShortcut)
- }
-}