diff --git a/ShareX.MediaLib/Forms/ImageBeautifierForm.cs b/ShareX.MediaLib/Forms/ImageBeautifierForm.cs index 4add907c3..66e06b770 100644 --- a/ShareX.MediaLib/Forms/ImageBeautifierForm.cs +++ b/ShareX.MediaLib/Forms/ImageBeautifierForm.cs @@ -293,13 +293,13 @@ namespace ShareX.MediaLib { if (btnShadowExpand.Tag is "+") { - gbShadow.Size = new Size(gbShadow.Width, 368); + gbShadow.Size = new Size(gbShadow.Width, btnShadowColor.Bottom + 16); btnShadowExpand.Image = Resources.minus_white; btnShadowExpand.Tag = "-"; } else { - gbShadow.Size = new Size(gbShadow.Width, 104); + gbShadow.Size = new Size(gbShadow.Width, tbShadowRadius.Bottom + 16); btnShadowExpand.Image = Resources.plus_white; btnShadowExpand.Tag = "+"; }