diff options
Diffstat (limited to 'Map/Presentation/Preferences/EditorPreferencesView.swift')
| -rw-r--r-- | Map/Presentation/Preferences/EditorPreferencesView.swift | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Map/Presentation/Preferences/EditorPreferencesView.swift b/Map/Presentation/Preferences/EditorPreferencesView.swift index 3d456c9..cf584ff 100644 --- a/Map/Presentation/Preferences/EditorPreferencesView.swift +++ b/Map/Presentation/Preferences/EditorPreferencesView.swift @@ -95,19 +95,25 @@ struct EditorPreferencesView: View { .frame(maxWidth: .infinity, alignment: .leading) } + /* + + Disabled because we haven't written the smart editor yet. + Call it aspirational preferences. + Divider() - + HStack(alignment: .firstTextBaseline, spacing: Dimensions.Spacing.regular) { Text("preferences.editor.smart_editor.title") .font(.Theme.Body.emphasized) .frame(maxWidth: 250, alignment: .trailing) - + VStack(alignment: .leading, spacing: Dimensions.Spacing.cozy) { Toggle( String(localized: "preferences.editor.smart_editor.enabled"), isOn: $useSmartEditor) } .frame(maxWidth: .infinity, alignment: .leading) } + */ Spacer() }.padding(.vertical, Dimensions.Spacing.loose) |