diff options
author | sr55 <[email protected]> | 2007-08-31 12:32:11 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-08-31 12:32:11 +0000 |
commit | b3a10e705540459c4c038dd2fc795627c3af11f3 (patch) | |
tree | 693987adf1580c8d26c89ff09466646f78c8ed80 /win/C#/frmQueue.cs | |
parent | bdd995d08b5a4e7a72063ac58b8c47d629f2a070 (diff) |
WinGui:
- Fixed possible cross-thread issue when closing the application (when more than 1 window is open)
- Added "Quit HandBrake" to the on complete options.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@909 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r-- | win/C#/frmQueue.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs index add7c456f..5d2b7ba2b 100644 --- a/win/C#/frmQueue.cs +++ b/win/C#/frmQueue.cs @@ -87,6 +87,9 @@ namespace Handbrake case "Lock System":
LockWorkStation();
break;
+ case "Quit HandBrake":
+ Application.Exit();
+ break;
default:
break;
}
|