diff options
author | sr55 <[email protected]> | 2018-10-06 13:31:32 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-10-06 13:31:32 +0100 |
commit | 4906e78e09959c1c9e231861c8740a40ddc98a96 (patch) | |
tree | 7f30f725d104cdc3f890f008ac33f654ee7b72d3 /win/CS/HandBrakeWPF/Views/AddPresetView.xaml | |
parent | 716e427aabd9be574c1ef5ef3bb100ed741d5c98 (diff) |
WinGui: Consistency Tweak on the Audio/Subtitle behaviour buttons on the add preset screen. Fixes #1619
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/AddPresetView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/AddPresetView.xaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Views/AddPresetView.xaml b/win/CS/HandBrakeWPF/Views/AddPresetView.xaml index 8f956d35a..6b90aa828 100644 --- a/win/CS/HandBrakeWPF/Views/AddPresetView.xaml +++ b/win/CS/HandBrakeWPF/Views/AddPresetView.xaml @@ -117,11 +117,11 @@ </StackPanel>
<TextBlock Text="Audio:" Grid.Row="6" />
- <Button Content="Edit Defaults..." Grid.Row="6" Grid.Column="1" HorizontalAlignment="Left" Margin="0,5,0,0" Padding="8,2"
+ <Button Content="{x:Static Properties:Resources.AudioViewModel_ConfigureDefaults}" Grid.Row="6" Grid.Column="1" HorizontalAlignment="Left" Margin="0,5,0,0" Padding="8,2"
cal:Message.Attach="[Event Click] = [Action EditAudioDefaults]" />
<TextBlock Text="Subtitles:" Grid.Row="7" />
- <Button Content="Edit Defaults..." Grid.Row="7" Grid.Column="1" HorizontalAlignment="Left" Margin="0,5,0,0" Padding="8,2"
+ <Button Content="{x:Static Properties:Resources.SubtitlesViewModel_ConfigureDefaults}" Grid.Row="7" Grid.Column="1" HorizontalAlignment="Left" Margin="0,5,0,0" Padding="8,2"
cal:Message.Attach="[Event Click] = [Action EditSubtitleDefaults]" />
</Grid>
|