diff options
author | sr55 <[email protected]> | 2018-09-28 21:59:37 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-09-28 21:59:37 +0100 |
commit | 77fa0c755330a25202203b3d4ad0974d141ce1cb (patch) | |
tree | c1a01c18af60609567c65a1fe4c5414561e206ce /win/CS/HandBrakeWPF/Services/Queue | |
parent | e1172af6f6c6d71241c950e0953a70755f5c5d17 (diff) |
WinGui: Improving Accessibility of the new Queue (and fixed a few other issues around the UI in this area too)
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Queue')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs b/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs index d8456519a..77c9b66ad 100644 --- a/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs +++ b/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs @@ -9,6 +9,8 @@ namespace HandBrakeWPF.Services.Queue.Model
{
+ using System.Runtime.CompilerServices;
+
using Caliburn.Micro;
using HandBrake.Interop.Model;
@@ -138,5 +140,10 @@ namespace HandBrakeWPF.Services.Queue.Model {
return this.Id.GetHashCode();
}
+
+ public override string ToString()
+ {
+ return string.Format("Encode Task. Title: {0}, Source: {1}, Destination: {2}", this.Task.Title, this.Task.Source, this.Task.Destination);
+ }
}
}
\ No newline at end of file |