FileSystemPlugin

Check for invalid paths
[Open this directory] Action always appears at top is path is existing
directory or parent is
This commit is contained in:
Aaron Campf
2014-05-20 16:45:11 -07:00
parent 60f4937aae
commit cefa8326e3
4 changed files with 53 additions and 54 deletions

View File

@@ -21,6 +21,7 @@ using UnhandledExceptionEventArgs = System.UnhandledExceptionEventArgs;
namespace Wox {
public static class EntryPoint {
[STAThread]
[System.Diagnostics.DebuggerStepThrough]
public static void Main(string[] args) {
AppDomain.CurrentDomain.UnhandledException += ErrorReporting.UnhandledExceptionHandle;
System.Windows.Forms.Application.ThreadException += ErrorReporting.ThreadException;
@@ -30,7 +31,7 @@ namespace Wox {
Entry(args);
}
[System.Diagnostics.DebuggerStepThrough]
private static void Entry(string[] args) {
SingleInstanceManager manager = new SingleInstanceManager();
manager.Run(args);