summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services
diff options
context:
space:
mode:
authorsr55 <[email protected]>2021-03-08 20:03:54 +0000
committersr55 <[email protected]>2021-03-08 20:03:54 +0000
commit383ec399656d73130cc81cee3fd0a96ba50340f5 (patch)
tree64906b4aaa55ec18b9d23e4e770ffe753dc8fd48 /win/CS/HandBrakeWPF/Services
parentc07495de1b61502ac14dd68b9851c2c5df291abb (diff)
WinGui: Move to Caliburn Micro 4.0 (RC). This removes the Framework 4 dependant 3.2 version.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r--win/CS/HandBrakeWPF/Services/ErrorService.cs4
-rw-r--r--win/CS/HandBrakeWPF/Services/PrePostActionService.cs2
2 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Services/ErrorService.cs b/win/CS/HandBrakeWPF/Services/ErrorService.cs
index 21c04cd58..4a0118387 100644
--- a/win/CS/HandBrakeWPF/Services/ErrorService.cs
+++ b/win/CS/HandBrakeWPF/Services/ErrorService.cs
@@ -42,7 +42,7 @@ namespace HandBrakeWPF.Services
errorViewModel.ErrorMessage = message;
errorViewModel.Solution = solution;
errorViewModel.Details = details;
- windowManager.ShowDialog(errorViewModel);
+ windowManager.ShowDialogAsync(errorViewModel);
}
}
@@ -68,7 +68,7 @@ namespace HandBrakeWPF.Services
errorViewModel.ErrorMessage = message;
errorViewModel.Solution = solution;
errorViewModel.Details = exception.ToString();
- windowManager.ShowDialog(errorViewModel);
+ windowManager.ShowDialogAsync(errorViewModel);
}
}
diff --git a/win/CS/HandBrakeWPF/Services/PrePostActionService.cs b/win/CS/HandBrakeWPF/Services/PrePostActionService.cs
index 2eba7b38c..7fa70aa8d 100644
--- a/win/CS/HandBrakeWPF/Services/PrePostActionService.cs
+++ b/win/CS/HandBrakeWPF/Services/PrePostActionService.cs
@@ -138,7 +138,7 @@ namespace HandBrakeWPF.Services
() =>
{
titleSpecificView.SetAction((WhenDone)this.userSettingService.GetUserSetting<int>(UserSettingConstants.WhenCompleteAction));
- this.windowManager.ShowDialog(titleSpecificView);
+ this.windowManager.ShowDialogAsync(titleSpecificView);
isCancelled = titleSpecificView.IsCancelled;
});
}