aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRogueAI42 <[email protected]>2017-07-29 02:14:06 +1000
committerRogueAI42 <[email protected]>2017-07-29 02:15:05 +1000
commit43ca601a2426da49bd1e034d5694071ef241cd83 (patch)
treef5f750c06a8567798cc37e592ef4cc30e38239ad
parent2ca944c644f43c578a83be20628706986c7412ca (diff)
downloadshiftos_thereturn-43ca601a2426da49bd1e034d5694071ef241cd83.tar.gz
shiftos_thereturn-43ca601a2426da49bd1e034d5694071ef241cd83.tar.bz2
shiftos_thereturn-43ca601a2426da49bd1e034d5694071ef241cd83.zip
Environment.NewLine plz
-rw-r--r--ShiftOS.Frontend/Apps/Terminal.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.Frontend/Apps/Terminal.cs b/ShiftOS.Frontend/Apps/Terminal.cs
index 29fd2bb..343bb5d 100644
--- a/ShiftOS.Frontend/Apps/Terminal.cs
+++ b/ShiftOS.Frontend/Apps/Terminal.cs
@@ -81,7 +81,7 @@ namespace ShiftOS.Frontend.Apps
{
get
{
- return Text.Split(new[] { "\r\n" }, StringSplitOptions.None);
+ return Text.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
}
}