We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4374f51 commit f91862fCopy full SHA for f91862f
1 file changed
Core/Sources/HostApp/GeneralView.swift
@@ -238,6 +238,8 @@ struct GeneralSettingsView: View {
238
var hideCircularWidget
239
@AppStorage(\.showHideWidgetShortcutGlobally)
240
var showHideWidgetShortcutGlobally
241
+ @AppStorage(\.installBetaBuilds)
242
+ var installBetaBuilds
243
}
244
245
@StateObject var settings = Settings()
@@ -255,6 +257,10 @@ struct GeneralSettingsView: View {
255
257
)) {
256
258
Text("Automatically Check for Update")
259
260
+
261
+ Toggle(isOn: $settings.installBetaBuilds) {
262
+ Text("Install beta builds")
263
+ }
264
265
Picker(selection: $settings.suggestionWidgetPositionMode) {
266
ForEach(SuggestionWidgetPositionMode.allCases, id: \.rawValue) {
0 commit comments