diff options
author | sr55 <[email protected]> | 2010-07-10 13:21:40 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-07-10 13:21:40 +0000 |
commit | ecaf272c82b41d305a6b42569fe424835e9c353e (patch) | |
tree | e8a4f75c0fcab6c8ef8794b6428c5d5b46a1fa25 /win/C#/HandBrake.ApplicationServices | |
parent | 094b2b9b203610939245502c89afee983219b9f9 (diff) |
WinGui:
- Fixed Queue import.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3433 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices')
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/Services/Queue.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/Queue.cs b/win/C#/HandBrake.ApplicationServices/Services/Queue.cs index 0a1eb3c3d..5b6904f64 100644 --- a/win/C#/HandBrake.ApplicationServices/Services/Queue.cs +++ b/win/C#/HandBrake.ApplicationServices/Services/Queue.cs @@ -306,6 +306,9 @@ namespace HandBrake.ApplicationServices.Services if (file != "hb_queue_recovery.xml")
this.WriteQueueStateToFile("hb_queue_recovery.xml");
+
+ if (this.QueueListChanged != null)
+ this.QueueListChanged(this, new EventArgs());
}
}
}
|