Enable track activity by default (#4710)

* enable track Activity by default
* Add v0.26.0 release notes and update "Track Activity" label
---------
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
CJ
2024-05-13 21:02:59 -05:00
committed by GitHub
parent 408d6fc988
commit 1d565a7cbd
5 changed files with 10 additions and 3 deletions

View File

@@ -301,7 +301,7 @@ export const SettingsInterfacePanel: React.FC = () => {
<BooleanSetting
id="track-activity"
headingID="config.ui.scene_player.options.track_activity"
checked={ui.trackActivity ?? undefined}
checked={ui.trackActivity ?? true}
onChange={(v) => saveUI({ trackActivity: v })}
/>
<StringSetting