aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Desktop.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-11-18 10:04:42 -0700
committerAShifter <[email protected]>2017-11-18 10:04:42 -0700
commitb4a8a646b1d0c67414a0e1eeedcf9442739fd990 (patch)
tree92c92907a420f2bb97719f4fd6c19ac72e283b8d /ShiftOS.Main/ShiftOS/Desktop.cs
parentebdc09fe679b4b06fd149c8fc6539244100ce896 (diff)
parentcc734557de877186c5f5eb1e59efdcb785ac37a8 (diff)
downloadshiftos-rewind-b4a8a646b1d0c67414a0e1eeedcf9442739fd990.tar.gz
shiftos-rewind-b4a8a646b1d0c67414a0e1eeedcf9442739fd990.tar.bz2
shiftos-rewind-b4a8a646b1d0c67414a0e1eeedcf9442739fd990.zip
Merge remote-tracking branch 'refs/remotes/ShiftOS-Rewind/master'
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
+}