mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-04-17 14:34:05 -05:00

This reverts commit 49b37550cae6b3c69f59a9c7a44b17e3c12a813b. This currently breaks the GTK GUI.
18 lines
325 B
C#
18 lines
325 B
C#
using Avalonia.Controls;
|
|
|
|
namespace Ryujinx.Ava.UI.Views.Settings
|
|
{
|
|
public partial class SettingsInputView : UserControl
|
|
{
|
|
public SettingsInputView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
ControllerSettings.Dispose();
|
|
}
|
|
}
|
|
}
|