mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 00:16:23 +02:00
Merge branch 'fix/ui-deadlock' into 'master'
fix: UI deadlock when launching a game with "Trace Logs" enabled See merge request [ryubing/ryujinx!70](https://git.ryujinx.app/ryubing/ryujinx/-/merge_requests/70)
This commit is contained in:
commit
a5418059a2
1 changed files with 2 additions and 2 deletions
|
@ -213,13 +213,13 @@ namespace Ryujinx.Ava.UI.Windows
|
|||
}
|
||||
}
|
||||
|
||||
public void Application_Opened(object sender, ApplicationOpenedEventArgs args)
|
||||
public async void Application_Opened(object sender, ApplicationOpenedEventArgs args)
|
||||
{
|
||||
if (args.Application != null)
|
||||
{
|
||||
ViewModel.SelectedIcon = args.Application.Icon;
|
||||
|
||||
ViewModel.LoadApplication(args.Application).Wait();
|
||||
await ViewModel.LoadApplication(args.Application);
|
||||
}
|
||||
|
||||
args.Handled = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue