updated .gitignore for .configs/
[ede] / explorer / src / Explorer.ec
index f1f2958..8bfeaa8 100644 (file)
@@ -63,7 +63,7 @@ class Explorer : GuiApplication
       {
          ExplorerWindow explorerWnd { };
          explorerWnd.Create();
-         explorerWnd.view.path = goPath;
+         explorerWnd.GoTo(goPath, false, false);
       }
       else if(searchPath)
       {
@@ -117,7 +117,7 @@ struct QuickPathTool
       }
       get { return path[0] ? path : null; }
    }
-   property bool { get { return (bool)path[0]; } }
+   property bool { get { return path[0] != '\0'; } }
 };
 
 define app = ((Explorer)__thisModule);