Procházet zdrojové kódy

CDB: Fix file browser not opening at the latest location

lviguier před 1 rokem
rodič
revize
4243b8b77b
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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");