diff options
author | sr55 <[email protected]> | 2008-03-18 16:35:28 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-03-18 16:35:28 +0000 |
commit | f63833727ecf1725bb36b5d6d7dfc1353259a0e8 (patch) | |
tree | 520ef582dc695072c6949f6f8142e2c91d0ea943 /win/C#/frmMain.cs | |
parent | 6449e976291b94d5bd70a7d2c0e74c5e722098c2 (diff) |
WinGui:
- Few bug fixes in the preset system
- File > open is now Import preset. Loads in old presets into the preset bar.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1345 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index b83137278..a9ddbbd0e 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -195,6 +195,10 @@ namespace Handbrake // Close the stream
line.Close();
+
+ Form preset = new frmAddPreset(this);
+ preset.ShowDialog();
+
}
catch (Exception exc)
{
|