mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 21:40:18 +00:00
Fix Disposal functions
This commit is contained in:
parent
b3541cf926
commit
b8a18930f2
1 changed files with 8 additions and 0 deletions
|
@ -5,6 +5,7 @@ using Ryujinx.Ava.Common.Locale;
|
|||
using Ryujinx.Ava.UI.ViewModels;
|
||||
using Ryujinx.HLE.FileSystem;
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Ryujinx.Ava.UI.Windows
|
||||
{
|
||||
|
@ -109,5 +110,12 @@ namespace Ryujinx.Ava.UI.Windows
|
|||
{
|
||||
ViewModel.ApplyButton();
|
||||
}
|
||||
|
||||
protected override void OnClosing(CancelEventArgs e)
|
||||
{
|
||||
HotkeysPage.Dispose();
|
||||
InputPage.Dispose();
|
||||
base.OnClosing(e);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue