diff options
| author | Michael <[email protected]> | 2017-04-26 15:10:37 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-04-26 15:10:37 -0400 |
| commit | 894320db54760bc697f027809c59450987fd38d5 (patch) | |
| tree | c76af81c3e6bdefd0d9dbc7dc9e6bbecc1121b8d | |
| parent | 28f37ed42108e41020069621ad160e783f7e8229 (diff) | |
| download | shiftos_thereturn-894320db54760bc697f027809c59450987fd38d5.tar.gz shiftos_thereturn-894320db54760bc697f027809c59450987fd38d5.tar.bz2 shiftos_thereturn-894320db54760bc697f027809c59450987fd38d5.zip | |
Make widgets and desktopbg hide AL
| -rw-r--r-- | ShiftOS.WinForms/WinformsDesktop.cs | 5 |
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; }; |
