diff options
author | sr55 <[email protected]> | 2020-02-24 18:23:54 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2020-02-24 18:23:54 +0000 |
commit | 368c6062c51b1f46fbd077e8b17ffdde062a2a06 (patch) | |
tree | bbc2162b2fdb5aa411d9435cbcf3fc7a9640f2d9 /win/CS/HandBrakeWPF/Views | |
parent | ff8cd471a96ac161cdb305d9109391b0c60473c9 (diff) |
WinGui: Fix a small cosmetic issue on the main window presets control. Fixes #2652
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MainView.xaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml b/win/CS/HandBrakeWPF/Views/MainView.xaml index dd68dc6b7..c224efccd 100644 --- a/win/CS/HandBrakeWPF/Views/MainView.xaml +++ b/win/CS/HandBrakeWPF/Views/MainView.xaml @@ -453,7 +453,7 @@ <!-- Presets Options -->
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10,10,10,5" IsEnabled="{Binding HasSource, Converter={StaticResource booleanConverter}, ConverterParameter=false}">
- <Label Content="{x:Static Properties:Resources.MainView_Presets}" FontWeight="Bold" VerticalAlignment="Center" />
+ <Label Content="{x:Static Properties:Resources.MainView_Presets}" FontWeight="Bold" VerticalAlignment="Center" Margin="0,0,5,0" />
<StackPanel Orientation="Horizontal" Margin="5,0,0,0" Visibility="{Binding IsPresetPanelShowing, Converter={StaticResource boolToVisConverter}, ConverterParameter=true}">
<Button x:Name="SelectPresetsButton" VerticalAlignment="Center" Click="SelectPreset_OnClick" Width="255">
|