181: [Bug] Negative thumbnail coordinates are not allowed

This commit is contained in:
Anton Kasyanov
2021-05-08 21:32:41 +03:00
parent 47b80f0c4c
commit f121db431b

View File

@@ -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;
}
}