diff options
author | sr55 <[email protected]> | 2009-07-31 15:50:17 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-07-31 15:50:17 +0000 |
commit | 6051aa0f78e07a069ea44230a72d2e765a1893ba (patch) | |
tree | 9732ceceb0cf76eafa2205e4154a8afb398ff16f /win/C#/EncodeQueue/EncodeAndQueueHandler.cs | |
parent | c128a2446a8822918dcff743647a4645fe8c24a6 (diff) |
WinGui:
- Fixed and issue during scan where missing audio track information would cause the log parser to throw an exception.
- Added support for "Growl for Windows" http://growlforwindows.com/gfw/ - Thanks to bdunnington
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2739 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/EncodeQueue/EncodeAndQueueHandler.cs')
-rw-r--r-- | win/C#/EncodeQueue/EncodeAndQueueHandler.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/C#/EncodeQueue/EncodeAndQueueHandler.cs b/win/C#/EncodeQueue/EncodeAndQueueHandler.cs index 319163de6..a3f8ca6c0 100644 --- a/win/C#/EncodeQueue/EncodeAndQueueHandler.cs +++ b/win/C#/EncodeQueue/EncodeAndQueueHandler.cs @@ -448,6 +448,9 @@ namespace Handbrake.EncodeQueue case "Lock System":
Win32.LockWorkStation();
break;
+ case "Growl Notification":
+ GrowlCommunicator.Notify();
+ break;
case "Quit HandBrake":
Application.Exit();
break;
|