diff options
author | sr55 <[email protected]> | 2015-04-20 20:54:35 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-04-20 20:54:35 +0000 |
commit | fae5fb8d9927d3814af84baa7bd3796a03211698 (patch) | |
tree | b1852d378dd1f0551bb371cbe07fa44d0411ecb1 /win/CS/HandBrakeWPF/Controls/AlertPanel.xaml | |
parent | 69a4cf5c8b880bd69be890a043dd3abae31b07bf (diff) |
WinGui: Minor design tweaks to the No Titles found dialog.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7109 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Controls/AlertPanel.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Controls/AlertPanel.xaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml b/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml index 2960a7292..5e8b756ee 100644 --- a/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml +++ b/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml @@ -35,14 +35,14 @@ Text="{Binding Message, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"
/>
- <TextBlock SnapsToDevicePixels="True" VerticalAlignment="Top" FontSize="12" FontFamily="Segoe UI Light" Margin="0,5" HorizontalAlignment="Left"
+ <TextBlock SnapsToDevicePixels="True" VerticalAlignment="Top" FontSize="14" FontFamily="Segoe UI Light" Margin="0,5" HorizontalAlignment="Left"
Text="{Binding SubMessage, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"
TextWrapping="WrapWithOverflow"
/>
</StackPanel>
<Button Content="{Binding ActionText, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" Margin="0,10,0,0"
- x:Name="StatusActionButton" Click="StatusActionButton_OnClick" Padding="8,2" HorizontalAlignment="Right"
+ x:Name="StatusActionButton" Click="StatusActionButton_OnClick" Padding="8,2" HorizontalAlignment="Right" IsDefault="True"
Visibility="{Binding IsActionButtonVisible, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}, Converter={StaticResource boolTovisibility}}" />
</StackPanel>
|