From cf03b2db0d65ad4ed11f14cdeebc415ce96b1381 Mon Sep 17 00:00:00 2001 From: FormalDeterminism Date: Mon, 1 May 2017 18:17:48 -0500 Subject: [PATCH] Fixed a few pixels of the Windows 10 taskbar displaying below BabySmash window. Not tested with ClickOnce. --- Controller.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Controller.cs b/Controller.cs index e22c82c..b506a1e 100644 --- a/Controller.cs +++ b/Controller.cs @@ -127,6 +127,7 @@ namespace BabySmash Width = s.WorkingArea.Width, Height = s.WorkingArea.Height, WindowStyle = WindowStyle.None, + ResizeMode = ResizeMode.NoResize, Topmost = true, AllowsTransparency = Settings.Default.TransparentBackground, Background = (Settings.Default.TransparentBackground ? new SolidColorBrush(Color.FromArgb(1, 0, 0, 0)) : Brushes.WhiteSmoke),