enhance AutoAssignController to set player colors and enable LED functionality; update gamepad connection handling to load configuration while in Input settings.

This commit is contained in:
uncavo-hdmi
2025-02-04 17:02:25 +01:00
parent 7999a973f3
commit 6c8a60db08
3 changed files with 25 additions and 4 deletions

View File

@@ -363,7 +363,12 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
private void HandleOnGamepadConnected(string id)
{
Dispatcher.UIThread.Post(LoadDevices);
Dispatcher.UIThread.Post(() =>
{
LoadDevices();
LoadConfiguration();
LoadDevice();
});
}
private string GetCurrentGamepadId()