Files @ 62d349a8db2f
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Views/ClipArrowsView.axaml

Jason Maltzen
Fix the PaintMix export format - use the PracticalPaint internal names for ingredients, and remove excess whitespace. Also, don't export a recipe for colors that don't have a recipe.
<UserControl xmlns="https://github.com/avaloniaui"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             mc:Ignorable="d" d:DesignWidth="60" d:DesignHeight="16"
             Width="60" Height="16"
             x:Class="DesertPaintCodex.Views.ClipArrowsView">
    <Grid ColumnDefinitions="16,4,16,4,16" RowDefinitions="Auto">
        <Path Name="RedArrow" Classes="Red UpArrow"   Width="16" Height="16" Grid.Row="0" Grid.Column="0" />
        <Path Name="GreenArrow" Classes="Green UpArrow" Width="16" Height="16" Grid.Row="0" Grid.Column="2" />
        <Path Name="BlueArrow" Classes="Blue UpArrow"  Width="16" Height="16" Grid.Row="0" Grid.Column="4" />
    </Grid>
</UserControl>