🎨 The outline item in the outline panel supports dragging to adjust the level and position https://github.com/siyuan-note/siyuan/issues/7957

This commit is contained in:
Daniel 2024-03-27 22:15:52 +08:00
parent 24c59dd095
commit 611f6e2da0
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 148 additions and 0 deletions

View file

@ -195,6 +195,8 @@ func performTx(tx *Transaction) (ret *TxErr) {
ret = tx.doDelete(op)
case "move":
ret = tx.doMove(op)
case "moveOutlineHeading":
ret = tx.doMoveOutlineHeading(op)
case "append":
ret = tx.doAppend(op)
case "appendInsert":