소스 검색

[hide] Ignore .backed folder when renaming files

Clément Espeute 2 주 전
부모
커밋
58fbd099c2
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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) ) {