Display file name when FileAccessor is chosen

This commit is contained in:
Michael Becker 2015-05-19 10:34:36 -04:00
parent 3782ce90fb
commit af632e6701

View File

@ -122,5 +122,13 @@ namespace UniversalEditor.Accessors
{
mvarFileStream.Close();
}
public override string ToString()
{
StringBuilder sb = new StringBuilder();
// sb.Append("file:///");
sb.Append(mvarFileName);
return sb.ToString();
}
}
}