Add vibrate on zap

Changelog-Added: Vibrate when a zap is received
Closes: #768
This commit is contained in:
Swift
2023-03-09 13:36:42 -05:00
committed by William Casarin
parent d982bb886e
commit 73f7b69654
3 changed files with 36 additions and 6 deletions
+3 -1
View File
@@ -194,9 +194,11 @@ struct ConfigView: View {
}
}
Section(NSLocalizedString("Left Handed", comment: "Moves the post button to the left side of the screen")) {
Section(NSLocalizedString("Miscellaneous", comment: "Section header for miscellaneous user configuration")) {
Toggle(NSLocalizedString("Left Handed", comment: "Moves the post button to the left side of the screen"), isOn: $settings.left_handed)
.toggleStyle(.switch)
Toggle(NSLocalizedString("Zap Vibration", comment: "Setting to enable vibration on zap"), isOn: $settings.zap_vibration)
.toggleStyle(.switch)
}
Section(NSLocalizedString("Images", comment: "Section title for images configuration.")) {