Skip to content

Commit

Permalink
tweaked label and made the check passive
Browse files Browse the repository at this point in the history
  • Loading branch information
matryer committed Mar 30, 2021
1 parent 9561de7 commit a8e8a34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func newApp() (*app, error) {
}

app.autoupdateMenu = &menu.MenuItem{
Label: "Automatically update",
Label: "Update automatically",
Type: menu.CheckboxType,
Checked: app.settings.AutoUpdate,
Click: app.updateAutoupdate,
Expand Down Expand Up @@ -295,7 +295,7 @@ func (app *app) updateAutoupdate(data *menu.CallbackData) {
return
}
if app.settings.AutoUpdate {
go app.checkForUpdates(false)
go app.checkForUpdates(true)
}
// We need to refresh all as the menuitem is used in multiple places.
// If we don't refresh, only the menuitem clicked will toggle in the UI.
Expand Down

0 comments on commit a8e8a34

Please sign in to comment.