Skip to content

Commit

Permalink
[PATCH] Add warning text
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinhenderson committed Mar 5, 2024
1 parent 033e917 commit 6cfe0a3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion DragToSpeak/Pages/SettingsPage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ struct SettingsPage: View {
Section(content: {
Toggle("Finish when you stop dragging", isOn: $settings.finishOnDragEnd)
// Toggle("Correct words on Finish", isOn: $settings.autocorrectEnabled)
Toggle("Add spaces on finish", isOn: $settings.writeWithoutSpacesEnabled)
VStack(alignment: .leading) {
Toggle("Add spaces on finish", isOn: $settings.writeWithoutSpacesEnabled)
if settings.writeWithoutSpacesEnabled {
Text("This will send all sentences to our server for correction. We do not store any sentences.").italic()
}
}
}, header: {
Text("Message")
})
Expand Down

0 comments on commit 6cfe0a3

Please sign in to comment.