Fix issue#24

This commit is contained in:
qianlifeng
2014-03-11 22:17:10 +08:00
parent 8ef6827bd9
commit 9adf764af8
10 changed files with 98 additions and 179 deletions

View File

@@ -230,6 +230,16 @@ namespace Wox
case "hidestart":
HideApp();
break;
case "installplugin":
var path = args[1];
if (!File.Exists(path))
{
MessageBox.Show("Plugin " + path + " didn't exist");
return;
}
PluginInstaller.Install(path);
break;
}
}
}