Explorar el Código

[hide] Ignore .backed folder when renaming files

Clément Espeute hace 2 semanas
padre
commit
58fbd099c2
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      hide/Ide.hx

+ 2 - 0
hide/Ide.hx

@@ -1390,6 +1390,8 @@ class Ide extends hide.tools.IdeData {
 	function browseFiles( callb : String -> Void ) {
 		function browseRec(path) {
 			if( path == ".tmp" ) return;
+			if( path == ".backed" ) return;
+
 			for( p in sys.FileSystem.readDirectory(resourceDir + "/" + path) ) {
 				var p = path == "" ? p : path + "/" + p;
 				if( sys.FileSystem.isDirectory(resourceDir+"/"+p) ) {