소스 검색

CDB: Fix file browser not opening at the latest location

lviguier 1 년 전
부모
커밋
4243b8b77b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hide/comp/cdb/Cell.hx

+ 1 - 1
hide/comp/cdb/Cell.hx

@@ -1051,7 +1051,7 @@ class Cell {
 			ide.chooseFile(["*"], function(file) {
 				setValue(file);
 				closeEdit();
-			}, false, currentValue);
+			}, false, (currentValue == '') ? null : currentValue);
 			#end
 		case TFlags(values):
 			var div = new Element("<div>").addClass("flagValues");