summaryrefslogtreecommitdiffstats
path: root/win/Handbrake/frmOptions.vb
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-06-26 18:10:51 +0000
committersr55 <[email protected]>2007-06-26 18:10:51 +0000
commitb867f415ef36790ec568e2588f2bed2d9b494ece (patch)
tree4be56bf8db0a255451704bf62bf0b894e831a175 /win/Handbrake/frmOptions.vb
parent219d834f145fed289fe2f641d5c16d221a1941c2 (diff)
WinGui:
- New layout on options window. Added verbose mode option - Added the ability to re-arrange the queue - Fixed the issue where selecting the same chapter for start and finish would result in something like "-c 6-6" - Few other small changes & design tweaks git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@640 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/Handbrake/frmOptions.vb')
-rw-r--r--win/Handbrake/frmOptions.vb25
1 files changed, 25 insertions, 0 deletions
diff --git a/win/Handbrake/frmOptions.vb b/win/Handbrake/frmOptions.vb
index 23294e230..297945eb4 100644
--- a/win/Handbrake/frmOptions.vb
+++ b/win/Handbrake/frmOptions.vb
@@ -31,6 +31,12 @@ Public Class frmOptions
check_readDVDWindow.CheckState = CheckState.Unchecked
End If
+ If My.Settings.verbose = 1 Then
+ check_verbose.CheckState = CheckState.Checked
+ Else
+ check_verbose.CheckState = CheckState.Unchecked
+ End If
+
Catch ex As Exception
MessageBox.Show("ERROR: " & ex.ToString)
End Try
@@ -89,4 +95,23 @@ Public Class frmOptions
End Try
End If
End Sub
+
+
+ Private Sub check_verbose_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles check_verbose.CheckedChanged
+ If check_verbose.CheckState = 1 Then
+ Try
+ My.Settings.verbose = 1
+ Catch Ex As Exception
+ MessageBox.Show("ERROR: " & Ex.ToString)
+ End Try
+ Else
+ Try
+ My.Settings.verbose = 0
+ Catch Ex As Exception
+ MessageBox.Show("ERROR: " & Ex.ToString)
+ End Try
+ End If
+ End Sub
+
+
End Class \ No newline at end of file