diff options
author | sr55 <[email protected]> | 2009-11-25 18:59:56 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-11-25 18:59:56 +0000 |
commit | 5a0471ce2d3c95c6d7610e1c3bc2e01c7e041409 (patch) | |
tree | 4f5c2a4a78885af8222eaf2bcd970cea5d0e9865 /win/C#/Controls/Subtitles.Designer.cs | |
parent | 93fdbeb8b9f00382e38777d3e3dea12c05f325f7 (diff) |
WinGui:
- The Subtitle offset numeric control can now take a negative value. Users can add - through the query editor in the mean time.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2977 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Controls/Subtitles.Designer.cs')
-rw-r--r-- | win/C#/Controls/Subtitles.Designer.cs | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/win/C#/Controls/Subtitles.Designer.cs b/win/C#/Controls/Subtitles.Designer.cs index 5f1eaa14d..6c54c3f7c 100644 --- a/win/C#/Controls/Subtitles.Designer.cs +++ b/win/C#/Controls/Subtitles.Designer.cs @@ -161,19 +161,19 @@ this.toolStripSeparator2,
this.mnu_remove});
this.subMenu.Name = "audioMenu";
- this.subMenu.Size = new System.Drawing.Size(142, 76);
+ this.subMenu.Size = new System.Drawing.Size(139, 76);
//
// mnu_moveup
//
this.mnu_moveup.Name = "mnu_moveup";
- this.mnu_moveup.Size = new System.Drawing.Size(141, 22);
+ this.mnu_moveup.Size = new System.Drawing.Size(138, 22);
this.mnu_moveup.Text = "Move Up";
this.mnu_moveup.Click += new System.EventHandler(this.mnu_moveup_Click);
//
// mnu_movedown
//
this.mnu_movedown.Name = "mnu_movedown";
- this.mnu_movedown.Size = new System.Drawing.Size(141, 22);
+ this.mnu_movedown.Size = new System.Drawing.Size(138, 22);
this.mnu_movedown.Text = "Move Down";
this.mnu_movedown.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.mnu_movedown.Click += new System.EventHandler(this.mnu_movedown_Click);
@@ -181,12 +181,12 @@ // toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
- this.toolStripSeparator2.Size = new System.Drawing.Size(138, 6);
+ this.toolStripSeparator2.Size = new System.Drawing.Size(135, 6);
//
// mnu_remove
//
this.mnu_remove.Name = "mnu_remove";
- this.mnu_remove.Size = new System.Drawing.Size(141, 22);
+ this.mnu_remove.Size = new System.Drawing.Size(138, 22);
this.mnu_remove.Text = "Remove";
this.mnu_remove.Click += new System.EventHandler(this.mnu_remove_Click);
//
@@ -276,6 +276,11 @@ 0,
0,
0});
+ this.srt_offset.Minimum = new decimal(new int[] {
+ 1000000000,
+ 0,
+ 0,
+ -2147483648});
this.srt_offset.Name = "srt_offset";
this.srt_offset.Size = new System.Drawing.Size(58, 21);
this.srt_offset.TabIndex = 79;
|