diff options
author | sr55 <[email protected]> | 2008-09-09 19:01:38 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-09-09 19:01:38 +0000 |
commit | ebf4b4d663b9eeeed5d9632b5a2076355cff7145 (patch) | |
tree | 50d33a1d0b661a9840b6bee3666949803306b339 /win/C#/frmMain.cs | |
parent | 69699d2343472ad6fd1af454abd213e71287cb25 (diff) |
WinGui:
- Fixed Crop values not set on title change.
as per: http://forum.handbrake.fr/viewtopic.php?f=12&t=7050
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1684 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index bd51c7da6..323d49f8e 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -477,7 +477,10 @@ namespace Handbrake lbl_duration.Text = selectedTitle.Duration.ToString();
// Set the Recommended Cropping values
- //lbl_RecomendedCrop.Text = string.Format("{0}/{1}/{2}/{3}", selectedTitle.AutoCropDimensions[0], selectedTitle.AutoCropDimensions[1], selectedTitle.AutoCropDimensions[2], selectedTitle.AutoCropDimensions[3]);
+ text_top.Text = selectedTitle.AutoCropDimensions[0].ToString();
+ text_bottom.Text = selectedTitle.AutoCropDimensions[1].ToString();
+ text_left.Text = selectedTitle.AutoCropDimensions[2].ToString();
+ text_right.Text = selectedTitle.AutoCropDimensions[3].ToString();
// Populate the Start chapter Dropdown
drop_chapterStart.Items.Clear();
|