aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Desktop.cs
diff options
context:
space:
mode:
authorjtsshieh <[email protected]>2017-11-18 11:56:23 -0500
committerGitHub <[email protected]>2017-11-18 11:56:23 -0500
commitce700260e681f483e8e7120619f690da2d8847a6 (patch)
tree6897964ac67014fd497ee4f8c29c0ba1742ba5d5 /ShiftOS.Main/ShiftOS/Desktop.cs
parent97722fbe9d474adffbba0b92e9727c48a8205234 (diff)
parentc0400bc229d5f275955d6c964108deebf0908b4b (diff)
downloadshiftos-rewind-ce700260e681f483e8e7120619f690da2d8847a6.tar.gz
shiftos-rewind-ce700260e681f483e8e7120619f690da2d8847a6.tar.bz2
shiftos-rewind-ce700260e681f483e8e7120619f690da2d8847a6.zip
Merge pull request #15 from Alex-TIMEHACK/master
Fully working command handler (Alex)
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Desktop.cs')
-rw-r--r--ShiftOS.Main/ShiftOS/Desktop.cs13
1 files changed, 7 insertions, 6 deletions
diff --git a/ShiftOS.Main/ShiftOS/Desktop.cs b/ShiftOS.Main/ShiftOS/Desktop.cs
index 95e4d26..4bf4805 100644
--- a/ShiftOS.Main/ShiftOS/Desktop.cs
+++ b/ShiftOS.Main/ShiftOS/Desktop.cs
@@ -54,11 +54,12 @@ namespace ShiftOS.Main.ShiftOS
void timer1_Tick(object sender, EventArgs e) =>
taskbarClock.Text = $"{DateTime.Now:t}";
- void terminalToolStripMenuItem_Click(object sender, EventArgs e)
- {
- var trm = new Terminal();
- ShiftWM.Init(trm, "Terminal", null);
- }
+ private void terminalToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ Apps.Terminal trm = new Apps.Terminal();
+
+ ShiftWM.Init(trm, "Terminal", null, false, true);
+ }
void textPadToolStripMenuItem_Click(object sender, EventArgs e)
{
@@ -72,4 +73,4 @@ namespace ShiftOS.Main.ShiftOS
ShiftWM.Init(fs, "File Skimmer", Resources.iconFileSkimmer);
}
}
-} \ No newline at end of file
+}