Export functionality, bug fixes

This commit is contained in:
User 2017-10-27 15:45:11 +02:00
parent 086f7d2887
commit 334359ac96
9 changed files with 307 additions and 141 deletions

View file

@ -144,7 +144,7 @@ namespace LSLEditor.Helpers
return filename;
}
private static string RemoveDotInFrontOfFilename(string filename)
public static string RemoveDotInFrontOfFilename(string filename)
{
int afterLastIndexOfSeperator = (filename.LastIndexOf('\\') > filename.LastIndexOf('/') ? filename.LastIndexOf('\\') : filename.LastIndexOf('/')) + 1;