Skip to content

Commit 485e253

Browse files
committed
SteamController: Promote RTSS detection to Release - enable by default
1 parent 9792dfd commit 485e253

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
## 0.6.x
1111

12+
- SteamController: Promote RTSS detection to Release - enable by default
1213
- SteamController: Improve detection of Steam processes (especially latest controller UI changes)
1314
- SteamController: Add configuration wizard for the first time or when configuration was lost
1415
- PowerControl: Show current time

SteamController/Managers/RTSSManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public sealed class RTSSManager : Manager
66
{
77
public override void Tick(Context context)
88
{
9-
context.State.RTSSInForeground = SettingsDebug.Default.DetectRTSSForeground && RTSS.IsOSDForeground();
9+
context.State.RTSSInForeground = Settings.Default.DetectRTSSForeground && RTSS.IsOSDForeground();
1010
}
1111
}
1212
}

SteamController/Settings.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ public bool? EnableSteamDetection
2020
set { Set("EnableSteamDetection", value); }
2121
}
2222

23+
[Description("If current foreground process uses overlay, treat it as a game.")]
24+
public bool DetectRTSSForeground
25+
{
26+
get { return Get<bool>("DetectRTSSForeground", true); }
27+
set { Set("DetectRTSSForeground", value); }
28+
}
29+
2330
[Description("Default profile used when going back to Desktop mode")]
2431
[Browsable(true)]
2532
[TypeConverter(typeof(ProfilesSettings.Helpers.ProfileStringConverter))]

SteamController/SettingsDebug.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,6 @@ public bool KeepX360AlwaysConnected
2020
set { Set("KeepX360AlwaysConnected", value); }
2121
}
2222

23-
[Description("If current foreground process uses overlay, treat it as a game.")]
24-
public bool DetectRTSSForeground
25-
{
26-
get { return Get<bool>("DetectRTSSForeground", false); }
27-
set { Set("DetectRTSSForeground", value); }
28-
}
29-
3023
[Description("Use Lizard Buttons instead of emulated. This option is only for testing purposes.")]
3124
public bool LizardButtons { get; set; } = false;
3225

0 commit comments

Comments
 (0)