You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable Images to have muliple <Text> ancestors (microsoft#749)
Prior to this change, Images with one <Text> ancestor were supported:
```
<Text>
<Image />
</Text>
```
But Images with multiple <Text> ancestors resulted in an exception:
```
<Text>
<Text>
<Image />
</Text>
</Text>
```
This change fixes the latter scenario.
The problem was that some code assumed that it would only receive Inlines when actually it could also receive UIElements.
0 commit comments