aboutsummaryrefslogtreecommitdiff
path: root/Hotline/macOS
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2024-05-11 19:55:17 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2024-05-11 19:55:17 -0700
commit8dd886979ec61e5adb73d8c662de07070be75d41 (patch)
treeb84f3d4d9028c856efeab732cda1ef9d4b54e1cc /Hotline/macOS
parent6f166f0f12aab78fb0ab69cca386c8d8450cd9cc (diff)
Add "Show Join/Leave in Chat" option
Diffstat (limited to 'Hotline/macOS')
-rw-r--r--Hotline/macOS/SettingsView.swift1
1 files changed, 1 insertions, 0 deletions
diff --git a/Hotline/macOS/SettingsView.swift b/Hotline/macOS/SettingsView.swift
index 79f0156..81a2f8d 100644
--- a/Hotline/macOS/SettingsView.swift
+++ b/Hotline/macOS/SettingsView.swift
@@ -11,6 +11,7 @@ struct GeneralSettingsView: View {
Form {
TextField("Your Name", text: $username, prompt: Text("guest"))
+ Toggle("Show Join/Leave in Chat", isOn: $preferences.showJoinLeaveMessages)
Toggle("Refuse private messages", isOn: $preferences.refusePrivateMessages)
Toggle("Refuse private chat", isOn: $preferences.refusePrivateChat)
Toggle("Automatic Response", isOn: $preferences.enableAutomaticMessage)