diff options
author | sr55 <[email protected]> | 2019-04-08 20:35:28 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-04-08 20:35:28 +0100 |
commit | 991d7e40952db864f331ef181e1e468272c45644 (patch) | |
tree | b9e197e3409dfa6606c9efa23f12fee151b6f341 /win/CS/HandBrakeWPF/Controls/AlertPanel.xaml | |
parent | 06c2f31cb61488d0f451aa7a0a672076d8f9a4de (diff) |
WinGui: Improve the failed scan information window. #2025
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 06cbdfe3d..5b1d2e857 100644 --- a/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml +++ b/win/CS/HandBrakeWPF/Controls/AlertPanel.xaml @@ -24,7 +24,7 @@ <RowDefinition Height="Auto" />
</Grid.RowDefinitions>
- <StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Row="0" MaxHeight="220" MinHeight="220">
+ <StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Row="0" MaxHeight="240" MinHeight="220">
<Image Source="../Views/Images/information64.png" VerticalAlignment="Center" Height="64" Margin="18,10" />
@@ -41,7 +41,7 @@ />
</StackPanel>
- <Button Content="{Binding ActionText, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" Margin="0,10,0,0"
+ <Button Content="{Binding ActionText, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" Margin="0,10,0,5"
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}}" />
|