aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Frontend/Apps/TextPad.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-07-19 19:24:28 -0400
committerMichael <[email protected]>2017-07-19 19:24:28 -0400
commitd3ce724d287cbacdef35b06832d37e4cb65a6013 (patch)
treefcf366fa5671586f4e7ce19a1a895252d85a2a4c /ShiftOS.Frontend/Apps/TextPad.cs
parentb8eb7dccfdd16bd1d39bbedeb176fce7f0f1dc9e (diff)
downloadshiftos_thereturn-d3ce724d287cbacdef35b06832d37e4cb65a6013.tar.gz
shiftos_thereturn-d3ce724d287cbacdef35b06832d37e4cb65a6013.tar.bz2
shiftos_thereturn-d3ce724d287cbacdef35b06832d37e4cb65a6013.zip
Can the Terminal PLEASE be someone else's fucking issue now?
Diffstat (limited to 'ShiftOS.Frontend/Apps/TextPad.cs')
-rw-r--r--ShiftOS.Frontend/Apps/TextPad.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ShiftOS.Frontend/Apps/TextPad.cs b/ShiftOS.Frontend/Apps/TextPad.cs
index 84eb9ef..744b3c7 100644
--- a/ShiftOS.Frontend/Apps/TextPad.cs
+++ b/ShiftOS.Frontend/Apps/TextPad.cs
@@ -19,6 +19,7 @@ namespace ShiftOS.Frontend.Apps
{
contentsLabel = new TerminalControl();
contentsLabel.Dock = GUI.DockStyle.Fill;
+ contentsLabel.PerformTerminalBehaviours = false;
AddControl(contentsLabel);
}
@@ -42,7 +43,7 @@ namespace ShiftOS.Frontend.Apps
public void OpenFile(string file)
{
- //contentsLabel.Text = Objects.ShiftFS.Utils.ReadAllText(file);
+ contentsLabel.Text = Objects.ShiftFS.Utils.ReadAllText(file);
AppearanceManager.SetupWindow(this);
}
}