Enables check for updates

This commit is contained in:
Stuart Breckenridge
2020-07-16 06:43:11 +08:00
parent 0904ff519f
commit 995278ac58
3 changed files with 8 additions and 2 deletions

View File

@@ -25,7 +25,9 @@ struct AdvancedPreferencesView: View {
HStack {
Spacer()
Button("Check for Updates", action: {})
Button("Check for Updates") {
appDelegate.softwareUpdater.checkForUpdates()
}
Spacer()
}.padding(.bottom, 8)