diff options
-rw-r--r-- | win/Handbrake.suo | bin | 29184 -> 29184 bytes | |||
-rw-r--r-- | win/Handbrake/frmMain.vb | 7 |
2 files changed, 7 insertions, 0 deletions
diff --git a/win/Handbrake.suo b/win/Handbrake.suo Binary files differindex 260fc1213..036ca4281 100644 --- a/win/Handbrake.suo +++ b/win/Handbrake.suo diff --git a/win/Handbrake/frmMain.vb b/win/Handbrake/frmMain.vb index 7a63f3edf..1bffcd51e 100644 --- a/win/Handbrake/frmMain.vb +++ b/win/Handbrake/frmMain.vb @@ -597,6 +597,13 @@ Public Class frmMain text_width.BackColor = Color.LightGreen
End If
End If
+
+ If (Not lbl_Aspect.Text.Equals("Select a Title")) Then
+ Dim height As Integer = text_width.Text / lbl_Aspect.Text
+ Dim mod16 As Integer = height Mod 16
+ height = height - mod16
+ text_height.Text = height
+ End If
Catch ex As Exception
|