Skip to content

Commit

Permalink
Merge pull request #583 from TheTrackerCouncil/fix-disable-updates-ba…
Browse files Browse the repository at this point in the history
…nner

Fix disable in update banner not working
  • Loading branch information
MattEqualsCoder authored Oct 3, 2024
2 parents b69a0cb + 24d1d1d commit b6c8369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TrackerCouncil.Smz3.UI/Services/MainWindowService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public MainWindowViewModel InitializeModel(MainWindow window)

public void DisableUpdates()
{
_options.GeneralOptions.CheckForUpdatesOnStartup = true;
_options.GeneralOptions.CheckForUpdatesOnStartup = false;
_options.Save();
_model.DisplayNewVersionBanner = false;
}
Expand Down

0 comments on commit b6c8369

Please sign in to comment.