Improve profile selection to remove special handling of IsDesktop

This commit is contained in:
Kamil Trzciński 2022-11-28 23:43:46 +01:00
parent 44e5751d75
commit 6ea0329cbb
8 changed files with 84 additions and 89 deletions

View file

@ -31,7 +31,7 @@ namespace SteamController.Managers
if (!activated)
{
activated = true;
context.ToggleDesktopMode(false);
context.SelectController();
}
}
else
@ -39,7 +39,7 @@ namespace SteamController.Managers
if (activated)
{
activated = false;
context.ToggleDesktopMode(true);
context.BackToDefault();
}
}
}