Maybe will show notification on controller changed

This commit is contained in:
Kamil Trzciński 2022-11-26 14:27:21 +01:00
parent 17a71dc110
commit b977003efa
6 changed files with 36 additions and 10 deletions

View file

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