Add `IDialogParent.AddOnScreenMessage` extension

This commit is contained in:
James Groom 2023-11-23 07:45:40 +00:00 committed by GitHub
parent 5ef398c309
commit 36df9c387b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,9 @@ namespace BizHawk.Client.Common
{
public static class DialogControllerExtensions
{
public static void AddOnScreenMessage(this IDialogParent dialogParent, string message, int? duration = null)
=> dialogParent.DialogController.AddOnScreenMessage(message, duration);
public static void DoWithTempMute(this IDialogController dialogController, Action action)
{
dialogController.StopSound();

View File

@ -321,7 +321,7 @@ namespace BizHawk.Client.Common
public void PopupMessage(string message) => _dialogParent.ModalMessageBox(message, "Warning", EMsgBoxIcon.Warning);
private void Output(string message)
=> _dialogParent.DialogController.AddOnScreenMessage(message);
=> _dialogParent.AddOnScreenMessage(message);
private void LatchInputToUser()
{