|
@@ -270,6 +270,8 @@ class Editor extends Component {
|
|
if( ~/^[A-Za-z0-9_]+$/.match(text) ) value = text;
|
|
if( ~/^[A-Za-z0-9_]+$/.match(text) ) value = text;
|
|
case TString:
|
|
case TString:
|
|
value = text;
|
|
value = text;
|
|
|
|
+ case TFile:
|
|
|
|
+ value = ide.makeRelative(text);
|
|
case TInt:
|
|
case TInt:
|
|
text = text.split(",").join("").split(" ").join("");
|
|
text = text.split(",").join("").split(" ").join("");
|
|
value = Std.parseInt(text);
|
|
value = Std.parseInt(text);
|