- added option to open Wox Settings from the tray menu

- added a checkbox option specifying whether to leave the command line open after having run a command like >ping google.com
This commit is contained in:
kerams
2014-04-10 23:44:57 +02:00
parent b8f513fffe
commit e0eb8c83e2
5 changed files with 41 additions and 3 deletions

View File

@@ -68,6 +68,9 @@ namespace Wox.Infrastructure.Storage.UserSettings
[JsonProperty]
public OpacityMode OpacityMode { get; set; }
[JsonProperty]
public bool LeaveCmdOpen { get; set; }
public List<WebSearch> LoadDefaultWebSearches()
{
List<WebSearch> webSearches = new List<WebSearch>();
@@ -137,7 +140,8 @@ namespace Wox.Infrastructure.Storage.UserSettings
QueryBoxFont = FontFamily.GenericSansSerif.Name;
ResultItemFont = FontFamily.GenericSansSerif.Name;
Opacity = 1;
OpacityMode = OpacityMode.Normal;
OpacityMode = OpacityMode.Normal;
LeaveCmdOpen = false;
}
}