diff options
author | sr55 <[email protected]> | 2011-08-07 21:31:14 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-08-07 21:31:14 +0000 |
commit | 69d24d74273fde9bb4c790755c95575b4e6c3c0c (patch) | |
tree | a90422cd4aec2fc313af7eb8815e95bf6343abbc /win/CS/Functions | |
parent | db6a78037d052a0e0b2236bafef2799781930ce7 (diff) |
WinGui: Change the Queue to work in the same way as the Mac/Lin Queue. Retain Completed jobs and mark them as such.
- Added option to clear completed jobs.
- Added option to re-encode a completed/errored job.
- In-progress/Waiting jobs get saved into queue recovery.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4161 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Functions')
-rw-r--r-- | win/CS/Functions/Main.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/Functions/Main.cs b/win/CS/Functions/Main.cs index 2775b8064..9aa5afdc4 100644 --- a/win/CS/Functions/Main.cs +++ b/win/CS/Functions/Main.cs @@ -412,7 +412,7 @@ namespace Handbrake.Functions return queueFiles;
}
- catch (Exception)
+ catch (Exception exc)
{
return new List<string>(); // Keep quiet about the error.
}
|