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 | |
parent | ff8cd471a96ac161cdb305d9109391b0c60473c9 (diff) |
WinGui: Fix a small cosmetic issue on the main window presets control. Fixes #2652
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.Designer.cs | 2 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.resx | 2 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MainView.xaml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs index 3fd1b31ea..97f49d008 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs @@ -2119,7 +2119,7 @@ namespace HandBrakeWPF.Properties { } /// <summary> - /// Looks up a localized string similar to Presets. + /// Looks up a localized string similar to Preset:. /// </summary> public static string MainView_Presets { get { diff --git a/win/CS/HandBrakeWPF/Properties/Resources.resx b/win/CS/HandBrakeWPF/Properties/Resources.resx index c8f75faca..5e86870b7 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.resx +++ b/win/CS/HandBrakeWPF/Properties/Resources.resx @@ -1052,7 +1052,7 @@ Would you like to overwrite it?</value> <value>Delete Preset</value>
</data>
<data name="MainView_Presets" xml:space="preserve">
- <value>Presets</value>
+ <value>Preset:</value>
</data>
<data name="MainView_Preview" xml:space="preserve">
<value>Preview</value>
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">
|