X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?p=ede;a=blobdiff_plain;f=explorer%2Fsrc%2FExplorer.ec;h=da5dce54fe3d558ffb082aa2f2e52ea7a097531f;hp=6d3de34c234be986dd4d58e2db05e79fd0988241;hb=81286ac3e29409b17f3d85b74d0558ed880f7766;hpb=869508b5dd2f1151768de7a389edb4a32a5d11ce diff --git a/explorer/src/Explorer.ec b/explorer/src/Explorer.ec index 6d3de34..da5dce5 100644 --- a/explorer/src/Explorer.ec +++ b/explorer/src/Explorer.ec @@ -63,7 +63,7 @@ class Explorer : GuiApplication { ExplorerWindow explorerWnd { }; explorerWnd.Create(); - //explorerWnd.GoToLocation(goPath); + explorerWnd.view.path = goPath; } 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);