Hatch Fill

 From:  Michael Gibson
7279.19 In reply to 7279.18 
Hi Martin, it's because your <moi:DistanceInput> control is not closed. V3 and V4 differ on how malformed HTML is processed, V3 would scan ahead and see there is no end tag found and then close off the tag. V4 I believe adheres to what is supposed to happen which is that it puts the content after your unclosed tag as children of it and doesn't close it off automatically at its origin point.

You can fix it and make it work in both V3 and V4 by closing that tag like this:

code:
<moi:DistanceInput id="offset" value="2"/> 


- Michael