Skip to content

Commit 215814b

Browse files
[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
1 parent 4cee123 commit 215814b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/constants/coreSettings.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,11 +790,11 @@ export const CORE_SETTINGS: SettingParams[] = [
790790
type: 'combo',
791791
options: [
792792
{ value: 'standard', text: 'Standard (New)' },
793-
{ value: 'legacy', text: 'Left-Click Pan (Legacy)' }
793+
{ value: 'legacy', text: 'Drag Navigation' }
794794
],
795795
versionAdded: '1.25.0',
796796
defaultsByInstallVersion: {
797-
'1.25.0': 'standard'
797+
'1.25.0': 'legacy'
798798
}
799799
},
800800
{

0 commit comments

Comments
 (0)