From acf961a277554ad393fdc5f48306947f02d98e88 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 15 Jan 2011 20:14:03 +0000 Subject: WinGui: - Remove the limitations on the numeric widgets on the Picture settings panel. Seems that we can have some rather large par values >64K from time to time. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3746 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/Controls/PictureSettings.Designer.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/win/C#/Controls/PictureSettings.Designer.cs b/win/C#/Controls/PictureSettings.Designer.cs index c6b3b00a7..108266bb4 100644 --- a/win/C#/Controls/PictureSettings.Designer.cs +++ b/win/C#/Controls/PictureSettings.Designer.cs @@ -132,7 +132,7 @@ namespace Handbrake.Controls 0}); this.crop_left.Location = new System.Drawing.Point(32, 95); this.crop_left.Maximum = new decimal(new int[] { - 1920, + 10000, 0, 0, 0}); @@ -151,7 +151,7 @@ namespace Handbrake.Controls 0}); this.crop_right.Location = new System.Drawing.Point(132, 95); this.crop_right.Maximum = new decimal(new int[] { - 1920, + 10000, 0, 0, 0}); @@ -199,7 +199,7 @@ namespace Handbrake.Controls 0}); this.crop_top.Location = new System.Drawing.Point(82, 68); this.crop_top.Maximum = new decimal(new int[] { - 1080, + 10000, 0, 0, 0}); @@ -244,7 +244,7 @@ namespace Handbrake.Controls 0}); this.crop_bottom.Location = new System.Drawing.Point(82, 122); this.crop_bottom.Maximum = new decimal(new int[] { - 1080, + 10000, 0, 0, 0}); @@ -335,7 +335,7 @@ namespace Handbrake.Controls // this.text_width.Location = new System.Drawing.Point(50, 22); this.text_width.Maximum = new decimal(new int[] { - 2560, + 128000, 0, 0, 0}); @@ -362,7 +362,7 @@ namespace Handbrake.Controls // this.text_height.Location = new System.Drawing.Point(168, 22); this.text_height.Maximum = new decimal(new int[] { - 2560, + 128000, 0, 0, 0}); @@ -421,7 +421,7 @@ namespace Handbrake.Controls // this.updownParHeight.Location = new System.Drawing.Point(82, 111); this.updownParHeight.Maximum = new decimal(new int[] { - 10000, + 128000, 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[] { - 10000, + 128000, 0, 0, 0}); @@ -526,7 +526,7 @@ namespace Handbrake.Controls // this.updownDisplayWidth.Location = new System.Drawing.Point(82, 57); this.updownDisplayWidth.Maximum = new decimal(new int[] { - 2560, + 128000, 0, 0, 0}); -- cgit v1.2.3