diff --git a/src/Modern.Forms/MenuDropDown.cs b/src/Modern.Forms/MenuDropDown.cs index 0d5f748..0551dac 100644 --- a/src/Modern.Forms/MenuDropDown.cs +++ b/src/Modern.Forms/MenuDropDown.cs @@ -117,8 +117,8 @@ internal static Size ScaleSize (Size startSize, float x, float y) { var size = startSize; - size.Width = (int)Math.Round ((float)size.Width * x); - size.Height = (int)Math.Round ((float)size.Height * y); + size.Width = (int)Math.Ceiling ((float)size.Width * x); + size.Height = (int)Math.Ceiling ((float)size.Height * y); return size; }