From f9caeb6b445fb470be768b8ce4667017f60d5668 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Hamil?= Date: Fri, 30 Aug 2024 21:41:05 +0300 Subject: [PATCH] ControllerWindow.cs: Renamed UpdateCemuHookSpecificFieldsVisibility to ReflectMotionHandlerChanges --- src/Ryujinx.Gtk3/UI/Windows/ControllerWindow.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Ryujinx.Gtk3/UI/Windows/ControllerWindow.cs b/src/Ryujinx.Gtk3/UI/Windows/ControllerWindow.cs index fa2231ce9c..723a14ed50 100644 --- a/src/Ryujinx.Gtk3/UI/Windows/ControllerWindow.cs +++ b/src/Ryujinx.Gtk3/UI/Windows/ControllerWindow.cs @@ -206,12 +206,12 @@ namespace Ryujinx.UI.Windows private void HandheldCheckButtonPressed(object sender, EventArgs e) { - UpdateCemuHookSpecificFieldsVisibility(); + ReflectMotionHandlerChanges(); } private void CemuHookCheckButtonPressed(object sender, EventArgs e) { - UpdateCemuHookSpecificFieldsVisibility(); + ReflectMotionHandlerChanges(); } private void HandleOnGamepadDisconnected(string id) @@ -296,7 +296,7 @@ namespace Ryujinx.UI.Windows } } - private void UpdateCemuHookSpecificFieldsVisibility() + private void ReflectMotionHandlerChanges() { if (_enableHandheld.Active) { @@ -342,7 +342,7 @@ namespace Ryujinx.UI.Windows _leftStickKeyboard.Hide(); _rightStickKeyboard.Hide(); - UpdateCemuHookSpecificFieldsVisibility(); + ReflectMotionHandlerChanges(); } else {