diff options
author | sr55 <[email protected]> | 2009-06-15 14:56:23 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-06-15 14:56:23 +0000 |
commit | 24780596a9e62e823d619792445a784094f904a2 (patch) | |
tree | 79909eb55db5bf00acd2466a32d7da343949d8f5 /win/C#/frmAddPreset.Designer.cs | |
parent | b023bb532c17e1284230172b660baa32b5750318 (diff) |
WinGui:
- Picture Settings: Height of 0 allows for no -l to be passed to the CLI
- Picture Settings / pre-sets now set 0 when no Height specified. Prevents the panel from using incorrect values when pre-sets are selected.
- Simplified the Encode.cs set-up. Includes changes to QueueHandler
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2534 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmAddPreset.Designer.cs')
-rw-r--r-- | win/C#/frmAddPreset.Designer.cs | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/win/C#/frmAddPreset.Designer.cs b/win/C#/frmAddPreset.Designer.cs index 9ac8fe4cb..a50372a4f 100644 --- a/win/C#/frmAddPreset.Designer.cs +++ b/win/C#/frmAddPreset.Designer.cs @@ -42,6 +42,7 @@ namespace Handbrake this.btn_cancel = new System.Windows.Forms.Button();
this.check_pictureSettings = new System.Windows.Forms.CheckBox();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
+ this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lbl_name
@@ -68,7 +69,7 @@ namespace Handbrake this.btn_add.FlatAppearance.BorderColor = System.Drawing.Color.Black;
this.btn_add.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btn_add.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
- this.btn_add.Location = new System.Drawing.Point(212, 72);
+ this.btn_add.Location = new System.Drawing.Point(209, 109);
this.btn_add.Name = "btn_add";
this.btn_add.Size = new System.Drawing.Size(66, 22);
this.btn_add.TabIndex = 2;
@@ -82,7 +83,7 @@ namespace Handbrake this.btn_cancel.FlatAppearance.BorderColor = System.Drawing.Color.Black;
this.btn_cancel.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btn_cancel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
- this.btn_cancel.Location = new System.Drawing.Point(284, 72);
+ this.btn_cancel.Location = new System.Drawing.Point(281, 109);
this.btn_cancel.Name = "btn_cancel";
this.btn_cancel.Size = new System.Drawing.Size(66, 22);
this.btn_cancel.TabIndex = 3;
@@ -95,17 +96,27 @@ namespace Handbrake this.check_pictureSettings.AutoSize = true;
this.check_pictureSettings.Location = new System.Drawing.Point(109, 44);
this.check_pictureSettings.Name = "check_pictureSettings";
- this.check_pictureSettings.Size = new System.Drawing.Size(118, 17);
+ this.check_pictureSettings.Size = new System.Drawing.Size(155, 17);
this.check_pictureSettings.TabIndex = 1;
- this.check_pictureSettings.Text = "Use Picture Size";
+ this.check_pictureSettings.Text = "Store Cropping Values";
this.toolTip.SetToolTip(this.check_pictureSettings, "Save Picture Width/Height and Crop Values");
this.check_pictureSettings.UseVisualStyleBackColor = true;
//
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(106, 64);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(236, 13);
+ this.label1.TabIndex = 4;
+ this.label1.Text = "Note: Subtitles are not stored in presets";
+ //
// frmAddPreset
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(365, 100);
+ this.ClientSize = new System.Drawing.Size(365, 143);
+ this.Controls.Add(this.label1);
this.Controls.Add(this.check_pictureSettings);
this.Controls.Add(this.btn_cancel);
this.Controls.Add(this.btn_add);
@@ -134,5 +145,6 @@ namespace Handbrake internal System.Windows.Forms.Button btn_cancel;
private System.Windows.Forms.CheckBox check_pictureSettings;
private System.Windows.Forms.ToolTip toolTip;
+ private System.Windows.Forms.Label label1;
}
}
\ No newline at end of file |