Add browse more plugin and theme link to setting dialog.

This commit is contained in:
qianlifeng
2014-07-16 20:17:51 +08:00
parent 088c3984d8
commit 5c373f0d25
12 changed files with 117 additions and 112 deletions

View File

@@ -81,7 +81,7 @@ namespace Wox.Plugin.SystemPlugins
IcoPath = "Images\\app.png",
Action = (c) =>
{
context.CloseApp();
context.API.CloseApp();
return true;
}
});
@@ -99,7 +99,7 @@ namespace Wox.Plugin.SystemPlugins
Info.CreateNoWindow = true;
Info.FileName = "cmd.exe";
Process.Start(Info);
context.CloseApp();
context.API.CloseApp();
return true;
}
});
@@ -111,7 +111,7 @@ namespace Wox.Plugin.SystemPlugins
IcoPath = "Images\\app.png",
Action = (c) =>
{
context.OpenSettingDialog();
context.API.OpenSettingDialog();
return true;
}
});