diff --git a/kernel/conf/editor.go b/kernel/conf/editor.go index 32bba1df2..6b2819aba 100644 --- a/kernel/conf/editor.go +++ b/kernel/conf/editor.go @@ -18,6 +18,7 @@ package conf type Editor struct { FontSize int `json:"fontSize"` // 字体大小 + FontSizeScrollZoom bool `json:"fontSizeScrollZoom"` // 字体大小是否支持滚轮缩放 FontFamily string `json:"fontFamily"` // 字体 CodeSyntaxHighlightLineNum bool `json:"codeSyntaxHighlightLineNum"` // 代码块是否显示行号 CodeTabSpaces int `json:"codeTabSpaces"` // 代码块中 Tab 转换空格数,配置为 0 则表示不转换 @@ -51,6 +52,7 @@ type Editor struct { func NewEditor() *Editor { return &Editor{ FontSize: 16, + FontSizeScrollZoom: false, CodeSyntaxHighlightLineNum: true, CodeTabSpaces: 0, CodeLineWrap: false,