Procházet zdrojové kódy

:art: Document block sort value changed from `0` to `100` https://github.com/siyuan-note/siyuan/issues/12886

Daniel před 8 měsíci
rodič
revize
ad91c2dfc3
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      kernel/sql/database.go

+ 2 - 2
kernel/sql/database.go

@@ -1422,8 +1422,6 @@ func execStmtTx(tx *sql.Tx, stmt string, args ...interface{}) (err error) {
 func nSort(n *ast.Node) int {
 	switch n.Type {
 	// 以下为块级元素
-	case ast.NodeDocument:
-		return 0
 	case ast.NodeHeading:
 		return 5
 	case ast.NodeParagraph:
@@ -1446,6 +1444,8 @@ func nSort(n *ast.Node) int {
 		return 30
 	case ast.NodeAttributeView:
 		return 30
+	case ast.NodeDocument:
+		return 100
 	case ast.NodeText, ast.NodeTextMark:
 		if n.IsTextMarkType("tag") {
 			return 205