From 215814b62be9251d483d2311f58ee70158e5548b Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Sat, 23 Aug 2025 13:03:47 -0700 Subject: [PATCH] [feat] update navigation mode default to legacy and improve display name (#5183) - Change defaultsByInstallVersion from 'standard' to 'legacy' for version 1.25.0 - Update legacy navigation display name from 'Left-Click Pan (Legacy)' to 'Drag Navigation' - Maintains both navigation systems over long term while improving UX clarity --- src/constants/coreSettings.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants/coreSettings.ts b/src/constants/coreSettings.ts index 5200f05915..7d18ac14e3 100644 --- a/src/constants/coreSettings.ts +++ b/src/constants/coreSettings.ts @@ -790,11 +790,11 @@ export const CORE_SETTINGS: SettingParams[] = [ type: 'combo', options: [ { value: 'standard', text: 'Standard (New)' }, - { value: 'legacy', text: 'Left-Click Pan (Legacy)' } + { value: 'legacy', text: 'Drag Navigation' } ], versionAdded: '1.25.0', defaultsByInstallVersion: { - '1.25.0': 'standard' + '1.25.0': 'legacy' } }, {