default to focus locked, dynamic focus has performance issues

This commit is contained in:
Evan
2025-04-06 09:44:46 -07:00
parent 952a2568aa
commit e7041305fb
+1 -1
View File
@@ -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_;
}