summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services/Queue
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-09-22 19:45:24 +0100
committersr55 <[email protected]>2018-09-22 19:45:24 +0100
commitc0ab54be2370f7ddd889738a425e8076d76c9043 (patch)
tree5b49b176cce9ea765538239aa5189a7c721529e2 /win/CS/HandBrakeWPF/Services/Queue
parentebc64438a1c1621f9aef1d38f166419ed5b6e92c (diff)
WinGui: Implementing the new queue design. This is currently experimental and has to be explicitly enabled in preferences -> General #1087
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Queue')
-rw-r--r--win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs b/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs
index be4c664fb..d8456519a 100644
--- a/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs
+++ b/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs
@@ -93,6 +93,7 @@ namespace HandBrakeWPF.Services.Queue.Model
{
this.status = value;
this.NotifyOfPropertyChange(() => this.Status);
+ this.NotifyOfPropertyChange(() => this.ShowEncodeProgress);
}
}
@@ -116,6 +117,8 @@ namespace HandBrakeWPF.Services.Queue.Model
}
}
+ public bool ShowEncodeProgress => this.Status == QueueItemStatus.InProgress && SystemInfo.IsWindows10();
+
#endregion
protected bool Equals(QueueTask other)