Fix dependency bugs

This commit is contained in:
Colin Liu
2016-02-12 17:20:46 +08:00
parent 2d4d7b80c1
commit ca3bedc9a1
9 changed files with 191 additions and 139 deletions

View File

@@ -11,8 +11,14 @@ namespace Wox.CommandArgs
public void Execute(IList<string> args)
{
//TODO: Add ToggleWox Method
//App.API.ToggleWox();
if (App.Window.IsVisible)
{
App.API.HideApp();
}
else
{
App.API.ShowApp();
}
}
}
}