🎨 No longer limits the number of dynamically loaded blocks in the editor https://github.com/siyuan-note/siyuan/issues/12359

This commit is contained in:
Daniel 2024-08-29 16:53:02 +08:00
parent 604f13b34a
commit 6a3095c56c
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 2 additions and 10 deletions

View file

@ -247,9 +247,6 @@ func InitConf() {
if conf.MinDynamicLoadBlocks > Conf.Editor.DynamicLoadBlocks {
Conf.Editor.DynamicLoadBlocks = conf.MinDynamicLoadBlocks
}
if conf.MaxDynamicLoadBlocks < Conf.Editor.DynamicLoadBlocks {
Conf.Editor.DynamicLoadBlocks = conf.MaxDynamicLoadBlocks
}
if 0 > Conf.Editor.BacklinkExpandCount {
Conf.Editor.BacklinkExpandCount = 0
}