diff options
author | MutantAura <44103205+MutantAura@users.noreply.github.com> | 2023-04-10 23:04:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 00:04:31 +0200 |
commit | a4780ab33b9ca6b698917ded3ef6db6e6716cad1 (patch) | |
tree | 45ff846c11e857be593e2815f0e1e7d4fed4bb66 | |
parent | a947a45d8135bd0b6b1039904f48d92c0d455f3d (diff) |
Force activate parent window before dialog is shown (#4663)1.1.703
-rw-r--r-- | Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs b/Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs index a49077f2..c87308cf 100644 --- a/Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs +++ b/Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs @@ -53,6 +53,8 @@ namespace Ryujinx.Ava.UI.Applet bool opened = false; + _parent.Activate(); + UserResult response = await ContentDialogHelper.ShowDeferredContentDialog(_parent, title, message, |