summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-01-09 20:21:13 +0000
committersr55 <[email protected]>2015-01-09 20:21:13 +0000
commit9772731f48920014d889e9e8bcf4035b120a6e42 (patch)
treedf0f2ca198ab3f4c0e234899f5cf57a5a1d1b2ef /win/CS/HandBrakeWPF/ViewModels
parent6301bd5b63dd8c7e095331d22fe196210c79f316 (diff)
WinGui: Remove "Aspect Ratio" Display on the Picture tab. It's not really useful to anyone.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6702 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
index 728286798..1cfe67bae 100644
--- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
@@ -786,10 +786,9 @@ namespace HandBrakeWPF.ViewModels
// Set Screen Controls
this.SourceInfo = string.Format(
- "{0}x{1}, Aspect Ratio: {2:0.00}, PAR: {3}/{4}",
+ "{0}x{1}, PAR: {2}/{3}",
title.Resolution.Width,
title.Resolution.Height,
- title.AspectRatio,
title.ParVal.Width,
title.ParVal.Height);