aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/WinformsDesktop.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-26 15:10:37 -0400
committerMichael <[email protected]>2017-04-26 15:10:37 -0400
commit894320db54760bc697f027809c59450987fd38d5 (patch)
treec76af81c3e6bdefd0d9dbc7dc9e6bbecc1121b8d /ShiftOS.WinForms/WinformsDesktop.cs
parent28f37ed42108e41020069621ad160e783f7e8229 (diff)
downloadshiftos_thereturn-894320db54760bc697f027809c59450987fd38d5.tar.gz
shiftos_thereturn-894320db54760bc697f027809c59450987fd38d5.tar.bz2
shiftos_thereturn-894320db54760bc697f027809c59450987fd38d5.zip
Make widgets and desktopbg hide AL
Diffstat (limited to 'ShiftOS.WinForms/WinformsDesktop.cs')
-rw-r--r--ShiftOS.WinForms/WinformsDesktop.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/WinformsDesktop.cs b/ShiftOS.WinForms/WinformsDesktop.cs
index c98a255..d7c5196 100644
--- a/ShiftOS.WinForms/WinformsDesktop.cs
+++ b/ShiftOS.WinForms/WinformsDesktop.cs
@@ -61,6 +61,10 @@ namespace ShiftOS.WinForms
public WinformsDesktop()
{
InitializeComponent();
+ pnlwidgetlayer.Click += (o, a) =>
+ {
+ HideAppLauncher();
+ };
ControlManager.MakeDoubleBuffered(pnlwidgetlayer);
this.Click += (o, a) =>
{
@@ -507,6 +511,7 @@ namespace ShiftOS.WinForms
w.MouseDown += (o, a) =>
{
+ HideAppLauncher();
moving = true;
};