diff options
author | sr55 <[email protected]> | 2008-02-20 16:59:39 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-02-20 16:59:39 +0000 |
commit | a9cd8746b1a207e67b3e6fb0c78002d448c43fc1 (patch) | |
tree | 700847df817f00d63f5a24fc6ad4c0d11d7cc996 | |
parent | db588e3c6ffd1decde4e45d742a6755df7e685ee (diff) |
WinGui:
- Fixed Cropping not setting to Custom when loading user default settings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1306 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/C#/Functions/Common.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/Common.cs b/win/C#/Functions/Common.cs index 9e642b2d5..4c3e47dcb 100644 --- a/win/C#/Functions/Common.cs +++ b/win/C#/Functions/Common.cs @@ -183,7 +183,7 @@ namespace Handbrake.Functions // Picture Settings Tab
#region Picture
- mainWindow.drp_crop.Text = "Manual";
+ mainWindow.drp_crop.SelectedIndex = 1;
mainWindow.text_top.Text = presetQuery.CropTop;
mainWindow.text_bottom.Text = presetQuery.CropBottom;
mainWindow.text_left.Text = presetQuery.CropLeft;
|