🎨 支持列出和切换最近打开的文档 https://github.com/siyuan-note/siyuan/issues/3293
This commit is contained in:
parent
0152459bb9
commit
8400173cba
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ func SetRecentDoc(doc *RecentDoc) (err error) {
|
|||
recentDocs = append([]*RecentDoc{doc}, recentDocs...)
|
||||
}
|
||||
if 32 < len(recentDocs) {
|
||||
recentDocs = recentDocs[:64]
|
||||
recentDocs = recentDocs[:32]
|
||||
}
|
||||
|
||||
err = setRecentDocs(recentDocs)
|
||||
|
|
Loading…
Add table
Reference in a new issue