mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 22:50:13 +01:00
🎨 桌面端支持隐藏底部状态栏 https://github.com/siyuan-note/siyuan/issues/5292
This commit is contained in:
parent
aa691726e0
commit
fa9115a081
7 changed files with 21 additions and 1 deletions
|
|
@ -33,6 +33,7 @@ type Appearance struct {
|
|||
CustomCSS bool `json:"customCSS"` // 是否启用自定义主题
|
||||
ThemeJS bool `json:"themeJS"` // 是否启用了主题 JavaScript
|
||||
CloseButtonBehavior int `json:"closeButtonBehavior"` // 关闭按钮行为,0:退出,1:最小化到托盘
|
||||
HideStatusBar bool `json:"hideStatusBar"` // 是否隐藏底部状态栏
|
||||
}
|
||||
|
||||
func NewAppearance() *Appearance {
|
||||
|
|
@ -47,5 +48,6 @@ func NewAppearance() *Appearance {
|
|||
Lang: "en_US",
|
||||
CustomCSS: false,
|
||||
CloseButtonBehavior: 0,
|
||||
HideStatusBar: false,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue