Reset Window: Zoom Level default to 0 (#239)

Co-authored-by: Chandler Thompson <3262190+chandlertee@users.noreplyrgithub.com>
This commit is contained in:
Mathew Pareles 2025-01-25 16:37:00 -08:00 committed by GitHub
parent 197067af5a
commit f69f90b4c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -190,7 +190,7 @@ import { MAX_ZOOM_LEVEL, MIN_ZOOM_LEVEL } from '../../platform/window/electron-s
},
'window.zoomLevel': {
'type': 'number',
'default': -1,
'default': 0,
'minimum': MIN_ZOOM_LEVEL,
'maximum': MAX_ZOOM_LEVEL,
'markdownDescription': localize({ comment: ['{0} will be a setting name rendered as a link'], key: 'zoomLevel' }, "Adjust the default zoom level for all windows. Each increment above `0` (e.g. `1`) or below (e.g. `-1`) represents zooming `20%` larger or smaller. You can also enter decimals to adjust the zoom level with a finer granularity. See {0} for configuring if the 'Zoom In' and 'Zoom Out' commands apply the zoom level to all windows or only the active window.", '`#window.zoomPerWindow#`'),