diff options
author | sr55 <[email protected]> | 2010-07-10 13:27:22 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-07-10 13:27:22 +0000 |
commit | 9d5aa62e826ac6742169bdf6f8f66e4001925c87 (patch) | |
tree | 954ced1130be50054dbd3c73bdd2cce8a67260e2 | |
parent | ecaf272c82b41d305a6b42569fe424835e9c353e (diff) |
WinGui:
- Fix an exception on the picture settings pane when very large Par Width/Height values present.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3434 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/C#/Controls/PictureSettings.Designer.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/C#/Controls/PictureSettings.Designer.cs b/win/C#/Controls/PictureSettings.Designer.cs index 21c796daf..c6b3b00a7 100644 --- a/win/C#/Controls/PictureSettings.Designer.cs +++ b/win/C#/Controls/PictureSettings.Designer.cs @@ -421,7 +421,7 @@ namespace Handbrake.Controls //
this.updownParHeight.Location = new System.Drawing.Point(82, 111);
this.updownParHeight.Maximum = new decimal(new int[] {
- 2560,
+ 10000,
0,
0,
0});
@@ -485,7 +485,7 @@ namespace Handbrake.Controls //
this.updownParWidth.Location = new System.Drawing.Point(82, 84);
this.updownParWidth.Maximum = new decimal(new int[] {
- 2560,
+ 10000,
0,
0,
0});
@@ -610,7 +610,7 @@ namespace Handbrake.Controls this.lbl_presetCropWarning.TabIndex = 118;
this.lbl_presetCropWarning.Text = "( Preset values are in use! )";
//
- // CropSettings
+ // PictureSettings
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
this.BackColor = System.Drawing.Color.Transparent;
|