diff options
Diffstat (limited to 'Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs')
-rw-r--r-- | Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs b/Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs index 92e99385..79df3cc7 100644 --- a/Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs +++ b/Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs @@ -52,7 +52,7 @@ namespace Ryujinx.Ui.Applet [GLib.ConnectBefore()] private void HandleKeyPressEvent(object o, KeyPressEventArgs args) { - var key = (Common.Configuration.Hid.Key)GTK3MappingHelper.ToInputKey(args.Event.Key); + var key = (Ryujinx.Common.Configuration.Hid.Key)GTK3MappingHelper.ToInputKey(args.Event.Key); if (!(KeyPressedEvent?.Invoke(key)).GetValueOrDefault(true)) { @@ -70,7 +70,7 @@ namespace Ryujinx.Ui.Applet [GLib.ConnectBefore()] private void HandleKeyReleaseEvent(object o, KeyReleaseEventArgs args) { - var key = (Common.Configuration.Hid.Key)GTK3MappingHelper.ToInputKey(args.Event.Key); + var key = (Ryujinx.Common.Configuration.Hid.Key)GTK3MappingHelper.ToInputKey(args.Event.Key); if (!(KeyReleasedEvent?.Invoke(key)).GetValueOrDefault(true)) { |