Skip to content

Commit b612d2e

Browse files
committed
Fixes microsoft#40965: Increas largest possible zooming font size
1 parent 06d67f7 commit b612d2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/editor/common/config/editorZoom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const EditorZoom: IEditorZoom = new class implements IEditorZoom {
2424
}
2525

2626
public setZoomLevel(zoomLevel: number): void {
27-
zoomLevel = Math.min(Math.max(-9, zoomLevel), 9);
27+
zoomLevel = Math.min(Math.max(-5, zoomLevel), 20);
2828
if (this._zoomLevel === zoomLevel) {
2929
return;
3030
}

0 commit comments

Comments
 (0)