Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-09-24 16:30:16 +08:00
parent b96781004b
commit 48d5f0b788
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 5 additions and 9 deletions

View file

@ -6,7 +6,7 @@ import {blockRender} from "../render/blockRender";
import {processRender} from "../util/processCode"; import {processRender} from "../util/processCode";
import {highlightRender} from "../render/highlightRender"; import {highlightRender} from "../render/highlightRender";
import {hasClosestBlock, hasClosestByAttribute, hasTopClosestByAttribute, isInEmbedBlock} from "../util/hasClosest"; import {hasClosestBlock, hasClosestByAttribute, hasTopClosestByAttribute, isInEmbedBlock} from "../util/hasClosest";
import {zoomOut} from "../../menus/protyle"; import {setFold, zoomOut} from "../../menus/protyle";
import {disabledProtyle, enableProtyle, onGet} from "../util/onGet"; import {disabledProtyle, enableProtyle, onGet} from "../util/onGet";
/// #if !MOBILE /// #if !MOBILE
import {getAllModels} from "../../layout/getAll"; import {getAllModels} from "../../layout/getAll";
@ -1061,6 +1061,10 @@ export const turnsIntoTransaction = (options: {
const undoOperations: IOperation[] = []; const undoOperations: IOperation[] = [];
let previousId: string; let previousId: string;
selectsElement.forEach((item, index) => { selectsElement.forEach((item, index) => {
if ((options.type === "Blocks2Ps" || options.type === "Blocks2Hs") &&
item.getAttribute("data-type") === "NodeHeading" && item.getAttribute("fold") === "1") {
setFold(options.protyle, item, undefined, undefined, false);
}
item.classList.remove("protyle-wysiwyg--select"); item.classList.remove("protyle-wysiwyg--select");
item.removeAttribute("select-start"); item.removeAttribute("select-start");
item.removeAttribute("select-end"); item.removeAttribute("select-end");

View file

@ -1559,14 +1559,6 @@ func (tx *Transaction) doUpdate(operation *Operation) (ret *TxErr) {
} }
} }
} }
if oldNode.HeadingLevel != updatedNode.HeadingLevel {
// 编辑折叠标题下方块,并且这个块的标题层级发生了变化(比如从 H2 变为 H3 或者从标题块变成段落块),则刷新所有编辑器以保持一致性
go func() {
tx.WaitForCommit()
ReloadProtyle(tree.ID)
}()
}
return return
} }