summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-08-22 18:48:40 +0000
committersr55 <[email protected]>2007-08-22 18:48:40 +0000
commit5b79c836c803fe8b7706bf06485656f889478f7f (patch)
tree9da98d6aae57ef1d3f9281a1c7b51352030e3606 /win/C#/frmMain.cs
parent784d350cf62da4ee14042e573d42765db84ddf1f (diff)
WinGui:
- Added some more exception handling. - Added workaround for issue with scanning on French systems causing a crash. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@850 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index c70b71c9f..d3873c407 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -1228,9 +1228,10 @@ namespace Handbrake
}
}
}
- catch (Exception)
+ catch (Exception exc)
{
// No need to throw an error here.
+ // Note on non english systems, this will throw an error because of double.Parse(lbl_Aspect.Text); not working.
}