minor fix

This commit is contained in:
strwbrry1 2024-02-18 13:15:36 +04:00
parent 1d3eae1520
commit 29891204b0

View File

@ -69,7 +69,11 @@ namespace Catamaran
public void CheckPos()
{
if ((!_startPosX.HasValue || !_startPosY.HasValue) && (!_pictureHeight.HasValue || !_pictureWidth.HasValue))
//if ((!_startPosX.HasValue || !_startPosY.HasValue) && (!_pictureHeight.HasValue || !_pictureWidth.HasValue))
//{
// return;
//}
if (_startPosX == null || _startPosY == null)
{
return;
}