summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/CountdownAlertViewModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/CountdownAlertViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/CountdownAlertViewModel.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/CountdownAlertViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/CountdownAlertViewModel.cs
index 703f9a5af..ccee60870 100644
--- a/win/CS/HandBrakeWPF/ViewModels/CountdownAlertViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/CountdownAlertViewModel.cs
@@ -117,9 +117,10 @@ namespace HandBrakeWPF.ViewModels
/// </param>
public void SetAction(string actionMsg)
{
+ this.IsCancelled = false;
this.Ticks = 0;
timer.Start();
- this.action = actionMsg;
+ this.action = actionMsg;
}
#endregion