diff options
author | sr55 <[email protected]> | 2013-05-25 15:23:54 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-05-25 15:23:54 +0000 |
commit | c7efa5460d6ef5382f212a0370cf02e2172bde18 (patch) | |
tree | 8ec36e580f36960d7dd2e9cc067be18ddee1368d /win/CS/HandBrakeWPF/Views/VideoView.xaml | |
parent | be639f834ba19e1853d6c2844386478fb8c9a13c (diff) |
WinGui: Add some margin to prevent help prevent overlapping of CQ value and RF/CQ label.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5513 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/VideoView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/VideoView.xaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/VideoView.xaml b/win/CS/HandBrakeWPF/Views/VideoView.xaml index 9e098596a..569379c66 100644 --- a/win/CS/HandBrakeWPF/Views/VideoView.xaml +++ b/win/CS/HandBrakeWPF/Views/VideoView.xaml @@ -90,7 +90,7 @@ <StackPanel Orientation="Horizontal" Margin="0,0,0,10" >
<RadioButton Content="Constant Quality:" IsChecked="{Binding IsConstantQuantity}" Margin="0,0,10,0"/>
<TextBlock Text="{Binding DisplayRF}" Width="25" />
- <TextBlock Text="{Binding Rfqp}" FontWeight="Bold" />
+ <TextBlock Text="{Binding Rfqp}" FontWeight="Bold" Margin="5,0,0,0" />
<TextBlock Text="{x:Static Properties:Resources.Video_LosslessWarning}" Visibility="{Binding IsLossless, Converter={StaticResource boolToVisConverter}}"
Margin="10,0,0,0" ToolTip="{x:Static Properties:Resources.Video_LosslessWarningTooltip}" FontWeight="Bold" />
|