diff options
Diffstat (limited to 'ShiftOS.Frontend/Apps/TextPad.cs')
| -rw-r--r-- | ShiftOS.Frontend/Apps/TextPad.cs | 3 |
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); } } |
