From f121db431bd98b78a11d2f1f3747a19ce3c3bdcd Mon Sep 17 00:00:00 2001 From: Anton Kasyanov Date: Sat, 8 May 2021 21:32:41 +0300 Subject: [PATCH] 181: [Bug] Negative thumbnail coordinates are not allowed --- src/Eve-O-Preview/View/Implementation/ThumbnailView.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs b/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs index 682fade..87d2250 100644 --- a/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs +++ b/src/Eve-O-Preview/View/Implementation/ThumbnailView.cs @@ -91,10 +91,7 @@ namespace EveOPreview.View get => this.Location; set { - if ((value.X > 0) || (value.Y > 0)) - { - this.StartPosition = FormStartPosition.Manual; - } + this.StartPosition = FormStartPosition.Manual; this.Location = value; } }