aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/WinformsDesktop.cs
diff options
context:
space:
mode:
authorRogueAI42 <[email protected]>2017-06-17 14:23:39 +1000
committerRogueAI42 <[email protected]>2017-06-17 14:23:39 +1000
commit77cb4a9a14de07023e86a9a5cda7171fcb4ec8ec (patch)
treec823b48ddef5fdf8d4579536a51d12249b899cd3 /ShiftOS.WinForms/WinformsDesktop.cs
parente183f7c93d73bd07136ab9178dda3bae4a40f32b (diff)
downloadshiftos_thereturn-77cb4a9a14de07023e86a9a5cda7171fcb4ec8ec.tar.gz
shiftos_thereturn-77cb4a9a14de07023e86a9a5cda7171fcb4ec8ec.tar.bz2
shiftos_thereturn-77cb4a9a14de07023e86a9a5cda7171fcb4ec8ec.zip
Changed how bounces work in Pong + Fixed Shutdown
Diffstat (limited to 'ShiftOS.WinForms/WinformsDesktop.cs')
-rw-r--r--ShiftOS.WinForms/WinformsDesktop.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ShiftOS.WinForms/WinformsDesktop.cs b/ShiftOS.WinForms/WinformsDesktop.cs
index 82d99f0..e8ad298 100644
--- a/ShiftOS.WinForms/WinformsDesktop.cs
+++ b/ShiftOS.WinForms/WinformsDesktop.cs
@@ -824,7 +824,7 @@ namespace ShiftOS.WinForms
item.Text = Localization.Parse("{SHUTDOWN}");
item.Click += (o, a) =>
{
- TerminalBackend.InvokeCommand("sos.shutdown");
+ TerminalBackend.InvokeCommand("shutdown");
};
apps.DropDownItems.Add(item);
if (Shiftorium.UpgradeInstalled("advanced_app_launcher"))
@@ -853,7 +853,7 @@ namespace ShiftOS.WinForms
catbtn.Height = 24;
flcategories.Controls.Add(catbtn);
catbtn.Show();
- catbtn.Click += (o, a) => TerminalBackend.InvokeCommand("sos.shutdown");
+ catbtn.Click += (o, a) => TerminalBackend.InvokeCommand("shutdown");
}
}
}
@@ -1109,7 +1109,7 @@ namespace ShiftOS.WinForms
private void btnshutdown_Click(object sender, EventArgs e)
{
- TerminalBackend.InvokeCommand("sos.shutdown");
+ TerminalBackend.InvokeCommand("shutdown");
}
public void HideAppLauncher()