mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
fix: doFullSerialization for insertion markers (#7467)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user