- Operating system: OS X
 - Fuse version: 1.5.0 (build 15046)
 - Attached OTF font file
 
Hi, I’m having an issue with the Fuse Preview tool for Mac.
It seems that the scaling or text rendering is a bit off. It looks good on the device, but when I use the preview tool, it looks pretty off.
The font shown in the screenshot is Rooney Bold. Unfortunately, this is a premium font and I can’t share it here, but it might be available on some GitHub repo. Attached is Somatic Rounded, a similar font that also shows some of the same issues, but not as strongly.
Reference image, look at “Venus” in particular
Code for reproducing this
<App>
    <Font ux:Global="SomaticRounded" File="Somatic-Rounded.otf" />
    <Font ux:Global="RooneyBold" File="rooney_sans_bold.ttf" />
    <Rectangle Padding="30" Height="100%" Width="100%" Color="#26C485">
        <StackPanel Alignment="Center">
            <Text Color="#fff" Font="RooneyBold" FontSize="24" Margin="30,40" TextWrapping="Wrap" TextAlignment="Center" Alignment="Center">
                These are three planets in our solar system
            </Text>
            <Button Margin="10" MinHeight="60">
                <Text Value="Jupiter" FontSize="16" Font="RooneyBold" Color="#000" Alignment="Center" TextAlignment="Center" />
                <Rectangle CornerRadius="40" Layer="Background" Color="#fff" />
            </Button>
            <Button Margin="10" MinHeight="60">
                <Text Value="Venus" FontSize="16" Font="RooneyBold" Color="#000" Alignment="Center" TextAlignment="Center" />
                <Rectangle CornerRadius="40" Layer="Background" Color="#fff" />
            </Button>
            <Button Margin="10" MinHeight="60">
                <Text Value="Mars" FontSize="16" Font="RooneyBold" Color="#000" Alignment="Center" TextAlignment="Center" />
                <Rectangle CornerRadius="40" Layer="Background" Color="#fff" />
            </Button>
        </StackPanel>
    </Rectangle>
</App>
This might not seem like a huge issue, but it’s annoying to not be able to trust the preview tool when designing and laying out type.

