diff options
author | sr55 <[email protected]> | 2012-11-27 17:07:56 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-11-27 17:07:56 +0000 |
commit | 72bae41d28460388ab4d031c7aa5d565907fe3ba (patch) | |
tree | c096fe9de8b4186dcd69b03722a2604c10cfbb9c /win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml | |
parent | f93ce617afdba769738f8be17e3f80391231b822 (diff) |
WinGui: UI Tweaks and further fixes to Custom Anamorphic.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5084 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml b/win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml index fa537e178..f8a09cf44 100644 --- a/win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml +++ b/win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml @@ -54,7 +54,7 @@ Grid.Column="1" HorizontalAlignment="Left" Margin="0,0,0,5" />
</Grid>
- <!-- Row 4-->
+ <!-- Custom Anamoprhic -->
<Grid Margin="5,15,5,0" Visibility="{Binding ShowCustomAnamorphicControls, Converter={StaticResource boolToVisConverter}}">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
@@ -72,8 +72,10 @@ <Label Content="PAR Height:" Grid.Row="5" Grid.Column="0" />
<NumericUpDown:NumericUpDown Width="60" Value="{Binding DisplayWidth, Mode=TwoWay}" Grid.Row="0" Grid.Column="1" HorizontalAlignment="Left" Margin="0,0,0,5" />
- <NumericUpDown:NumericUpDown Width="60" Value="{Binding ParWidth, Mode=TwoWay}" Grid.Row="1" Grid.Column="1" HorizontalAlignment="Left" Margin="0,0,0,5" />
- <NumericUpDown:NumericUpDown Width="60" Value="{Binding ParHeight, Mode=TwoWay}" Grid.Row="2" Grid.Column="1" HorizontalAlignment="Left" Margin="0,0,0,5" />
+ <NumericUpDown:NumericUpDown Width="60" Value="{Binding ParWidth, Mode=TwoWay}" Grid.Row="1" Grid.Column="1" HorizontalAlignment="Left"
+ IsEnabled="{Binding MaintainAspectRatio, Converter={StaticResource boolConverter}, ConverterParameter=true}" Margin="0,0,0,5" />
+ <NumericUpDown:NumericUpDown Width="60" Value="{Binding ParHeight, Mode=TwoWay}" Grid.Row="2" Grid.Column="1" HorizontalAlignment="Left"
+ IsEnabled="{Binding MaintainAspectRatio, Converter={StaticResource boolConverter}, ConverterParameter=true}" Margin="0,0,0,5" />
</Grid>
<!-- Row 5-->
|