diff options
author | sr55 <[email protected]> | 2017-04-29 20:08:07 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-04-29 20:08:07 +0100 |
commit | b652292b6ae12e95f6ef24804a4cf8b51f32c47a (patch) | |
tree | 006d4ebc1946a39f30e63a75b21b82b9760da057 /win/CS/HandBrakeWPF/Services/Scan | |
parent | 8c5233a199f09615c0924957bc602f33f89d9533 (diff) |
WinGui: Minor change that might help #688
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Scan')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Scan/LibScan.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs b/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs index fdeb88b2d..eac84f263 100644 --- a/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs +++ b/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs @@ -144,8 +144,7 @@ namespace HandBrakeWPF.Services.Scan { this.ServiceLogMessage("Stopping Scan ..."); this.IsScanning = false; - this.instance.StopScan(); - this.ServiceLogMessage("Scan Stopped ..."); + this.instance.StopScan(); } catch (Exception exc) { @@ -154,6 +153,7 @@ namespace HandBrakeWPF.Services.Scan finally { this.ScanCompleted?.Invoke(this, new ScanCompletedEventArgs(this.isCancelled, null, null, null)); + this.ServiceLogMessage("Scan Stopped ..."); } } |