Merge branch 'fix/imagecropper-aspect-ratio-not-updating-on-image-load' of https://github.com/Arlodotexe/WindowsCommunityToolkit into fix/imagecropper-aspect-ratio-not-updating-on-image-load

This commit is contained in:
Arlo Godfrey 2022-09-26 11:29:05 -05:00
Родитель 7c70926bd6 eaea805d0a
Коммит 311d05c70a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -526,7 +526,7 @@ namespace Microsoft.Toolkit.Uwp.UI.Controls
/// </summary>
private bool TryUpdateAspectRatio()
{
if (!(KeepAspectRatio && Source != null && IsValidRect(_restrictedSelectRect)))
if (KeepAspectRatio is false || Source is null || IsValidRect(_restrictedSelectRect) is false)
{
return false;
}