diff options
author | sr55 <[email protected]> | 2013-05-25 15:28:11 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-05-25 15:28:11 +0000 |
commit | 1dedd35335085d5c1a790bfcc11560df3f943e62 (patch) | |
tree | 1cc40bf77bcfcc1dfe09c2f07dc0f3dfa21f9e55 /win/CS | |
parent | c7efa5460d6ef5382f212a0370cf02e2172bde18 (diff) |
WinGui: Attempt 2 at fixing text overlap and fixed lossless warning label not appearing.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5514 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs | 2 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Views/VideoView.xaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs index 514b45d5d..e5a8d6159 100644 --- a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs @@ -292,7 +292,7 @@ namespace HandBrakeWPF.ViewModels {
get
{
- return 51.Equals(this.RF);
+ return 0.0.Equals(this.DisplayRF);
}
}
diff --git a/win/CS/HandBrakeWPF/Views/VideoView.xaml b/win/CS/HandBrakeWPF/Views/VideoView.xaml index 569379c66..58fedf7bb 100644 --- a/win/CS/HandBrakeWPF/Views/VideoView.xaml +++ b/win/CS/HandBrakeWPF/Views/VideoView.xaml @@ -89,7 +89,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 DisplayRF}" MinWidth="30" />
<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}}"
|