Skip to content

Commit

Permalink
Merge pull request microsoft#16 from jjw24/tunoff_auto_update
Browse files Browse the repository at this point in the history
Set AutoUpdates off as default setting
  • Loading branch information
jjw24 committed Sep 22, 2019
2 parents 91be431 + 1fa9543 commit 9638a4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Wox.Infrastructure/UserSettings/Settings.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.ObjectModel;
using System.Drawing;
using Newtonsoft.Json;
Expand All @@ -21,7 +21,7 @@ public class Settings : BaseModel
public string ResultFontWeight { get; set; }
public string ResultFontStretch { get; set; }

public bool AutoUpdates { get; set; } = true;
public bool AutoUpdates { get; set; } = false;

public double WindowLeft { get; set; }
public double WindowTop { get; set; }
Expand Down

0 comments on commit 9638a4a

Please sign in to comment.