Skip to content

Commit

Permalink
fix: doFullSerialization for insertion markers (#7467)
Browse files Browse the repository at this point in the history
  • Loading branch information
BeksOmega authored Sep 11, 2023
1 parent 1b2e912 commit 4eba35e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/insertion_marker_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export class InsertionMarkerManager {
result = this.workspace.newBlock(imType);
result.setInsertionMarker(true);
if (sourceBlock.saveExtraState) {
const state = sourceBlock.saveExtraState();
const state = sourceBlock.saveExtraState(true);
if (state && result.loadExtraState) {
result.loadExtraState(state);
}
Expand Down

0 comments on commit 4eba35e

Please sign in to comment.