Browse Source

minor fix

Nicolas Cannasse 5 years ago
parent
commit
4b458995c0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hide/Ide.hx

+ 1 - 1
hide/Ide.hx

@@ -114,7 +114,7 @@ class Ide {
 		fileWatcher = new hide.tools.FileWatcher();
 
 		if( !sys.FileSystem.exists(current) || !sys.FileSystem.isDirectory(current) ) {
-			js.Browser.alert(current+" no longer exists");
+			if( current != "" ) js.Browser.alert(current+" no longer exists");
 			current = cwd;
 		}