From e7041305fb1f54a3ae943b419f8caf09555ff10f Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 6 Apr 2025 09:44:46 -0700 Subject: [PATCH] default to focus locked, dynamic focus has performance issues --- src/core/game/UserSettings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/game/UserSettings.ts b/src/core/game/UserSettings.ts index 8ae76ad36..e405eb5d9 100644 --- a/src/core/game/UserSettings.ts +++ b/src/core/game/UserSettings.ts @@ -28,7 +28,7 @@ export class UserSettings { focusLocked() { if (this.focusedLocked_ === null) { - this.focusedLocked_ = this.get("settings.focusLocked", false); + this.focusedLocked_ = this.get("settings.focusLocked", true); } return this.focusedLocked_; }