提交 b612d2e8 编写于 作者: A Alex Dima

Fixes #40965: Increas largest possible zooming font size

上级 06d67f76
......@@ -24,7 +24,7 @@ export const EditorZoom: IEditorZoom = new class implements IEditorZoom {
}
public setZoomLevel(zoomLevel: number): void {
zoomLevel = Math.min(Math.max(-9, zoomLevel), 9);
zoomLevel = Math.min(Math.max(-5, zoomLevel), 20);
if (this._zoomLevel === zoomLevel) {
return;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册