This commit is contained in:
Alin
2023-11-13 13:40:42 -07:00
parent 9cbde6493a
commit 46125d8cbc
5 changed files with 91 additions and 9 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ struct SentinelSettingsTab: View {
Spacer()
Toggle(isOn: $sentinel, label: {
})
.toggleStyle(.switch)
.toggleStyle(SentinelToggleStyle())
.onChange(of: sentinel) { newValue in
if newValue {
launchctl(load: true)
@@ -45,7 +45,7 @@ struct SentinelSettingsTab: View {
}
.padding(20)
.frame(width: 400, height: 100)
.frame(width: 450, height: 100)
}