Fix DockLayout and UIImage string encoding

This commit is contained in:
Yoshi Askharoun
2024-02-19 00:09:33 -06:00
parent 2e5eaedcdc
commit b0d5209f07
2 changed files with 21 additions and 2 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ namespace Microsoft.Iris.Layouts
if (other is not DockLayout o) return false;
return DefaultChildAlignment == o.DefaultChildAlignment
&& DefaultLayoutInput.ToString() == other.DefaultChildAlignment.ToString();
&& DefaultLayoutInput?.ToString() == o.DefaultLayoutInput?.ToString();
}
}
}