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

@ -28,13 +28,13 @@ namespace SteamController.Profiles
{
if (!c.SelectNext())
{
c.RequestDesktopMode = !c.RequestDesktopMode;
c.ToggleDesktopMode();
}
return Status.Done;
}
else if (c.Steam.BtnOptions.HoldNext(HoldToSwitchDesktop, ShortcutConsumed, "SwitchToDesktop"))
{
c.RequestDesktopMode = !c.RequestDesktopMode;
c.ToggleDesktopMode();
return Status.Done;
}