diff --git a/ObservatoryCore/UI/NotificationForm.cs b/ObservatoryCore/UI/NotificationForm.cs index 5ed914e..cbb6545 100644 --- a/ObservatoryCore/UI/NotificationForm.cs +++ b/ObservatoryCore/UI/NotificationForm.cs @@ -129,7 +129,7 @@ namespace Observatory.UI { _defaultPosition = false; int xLocation = Convert.ToInt32(screenBounds.Width * x); - int yLocation = Convert.ToInt32(screenBounds.Height * x); + int yLocation = Convert.ToInt32(screenBounds.Height * y); Location = Point.Add(screenBounds.Location, new Size(xLocation, yLocation)); } else