Fixes reading LF files in the editor

This commit is contained in:
Cyberboss
2017-09-27 15:07:53 -04:00
parent 08971535bd
commit dd914f38f8
+1 -1
View File
@@ -317,7 +317,7 @@ namespace TGControlPanel
else
{
StaticFileEditTextbox.ReadOnly = false;
StaticFileEditTextbox.Text = entry;
StaticFileEditTextbox.Text = entry.Replace("\r\n", "\n").Replace("\r", "\n").Replace("\n", Environment.NewLine);
}
}
}