Selaa lähdekoodia

[hide] Ignore .backed folder when renaming files

Clément Espeute 2 viikkoa sitten
vanhempi
commit
58fbd099c2
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  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) ) {