diff options
-rw-r--r-- | win/C#/frmMain.Designer.cs | 2 | ||||
-rw-r--r-- | win/C#/frmMain.cs | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/win/C#/frmMain.Designer.cs b/win/C#/frmMain.Designer.cs index c8b171438..35b335cb1 100644 --- a/win/C#/frmMain.Designer.cs +++ b/win/C#/frmMain.Designer.cs @@ -595,6 +595,7 @@ namespace Handbrake this.text_height.Size = new System.Drawing.Size(64, 21);
this.text_height.TabIndex = 28;
this.ToolTip.SetToolTip(this.text_height, "Video Resolution (Height)");
+ this.text_height.TextChanged += new System.EventHandler(this.text_height_TextChanged);
//
// text_width
//
@@ -605,6 +606,7 @@ namespace Handbrake this.text_width.Size = new System.Drawing.Size(64, 21);
this.text_width.TabIndex = 26;
this.ToolTip.SetToolTip(this.text_width, "Video Resolution (Width)");
+ this.text_width.TextChanged += new System.EventHandler(this.text_width_TextChanged);
//
// DVD_Open
//
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index f548e2d53..99cb7ed08 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -1908,6 +1908,10 @@ namespace Handbrake #endregion
+
+
+
+
// This is the END of the road ------------------------------------------------------------------------------
}
}
\ No newline at end of file |