diff options
author | sr55 <[email protected]> | 2008-09-27 22:42:23 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-09-27 22:42:23 +0000 |
commit | 37897e9ed4608d8f3e400d4090220f3a92a55fc3 (patch) | |
tree | f5ade466eeed35665cd708fd67a8f7b74521c920 /win/C#/Functions | |
parent | b5afbe5d8d9a81b79481fbfee67831ecd3728859 (diff) |
WinGui:
- Refined the Queue look.
- Fixed bug which cause the move up and down buttons to cause an exception.
- When you select an item on the queue and move it up or down, it will now remain selected. This saves re-selecting the item every time you want to move it up or down.
- Added pending encodes counter.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1780 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/Queue.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/Functions/Queue.cs b/win/C#/Functions/Queue.cs index 28730e099..3afca7d3e 100644 --- a/win/C#/Functions/Queue.cs +++ b/win/C#/Functions/Queue.cs @@ -83,7 +83,7 @@ namespace Handbrake.Functions {
if (index != 0)
{
- string item = queue[index].ToString();
+ ArrayList item = (ArrayList)queue[index];
queue.Insert((index - 1), item);
queue.RemoveAt((index + 1));
@@ -98,7 +98,7 @@ namespace Handbrake.Functions {
if (index != queue.Count - 1)
{
- string item = queue[index].ToString();
+ ArrayList item = (ArrayList)queue[index];
queue.Insert((index + 2), item);
queue.RemoveAt((index));
|