fix #251 add auto center Wox option

This commit is contained in:
qianlifeng
2015-02-20 21:45:42 +08:00
parent b1a97eca39
commit d93c705737
7 changed files with 62 additions and 23 deletions

View File

@@ -83,6 +83,9 @@ namespace Wox.Core.UserSettings
[JsonProperty]
public bool HideWhenDeactive { get; set; }
[JsonProperty]
public bool RememberLastLaunchLocation { get; set; }
[JsonProperty]
public string ProxyServer { get; set; }
@@ -131,6 +134,7 @@ namespace Wox.Core.UserSettings
LeaveCmdOpen = false;
HideWhenDeactive = false;
CustomPluginHotkeys = new List<CustomPluginHotkey>();
RememberLastLaunchLocation = false;
return this;
}